Adapted to recent changes of %build_linklib.
[AROS-Contrib.git] / FryingPan / framework / Generic / Set.h
blob648dc70ed15bb76127abd7402f2ffcb668c9b1ce
1 /*
2 * Amiga Generic Set - set of libraries and includes to ease sw development for all Amiga platforms
3 * Copyright (C) 2001-2011 Tomasz Wiszkowski Tomasz.Wiszkowski at gmail.com.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 #ifndef _GENERIC_SET_H_
21 #define _GENERIC_SET_H_
23 /**
24 * \file Set.h
25 * \brief Handle an attribute set - a typical flag value handler. \b undocumented yet
26 * \details This is the generic Set type class. You may want to use a specializet SetT class instead.
29 #include "Types.h"
31 namespace GenNS
33 /**
34 * \class Set
35 * \brief This is the generic Set type class. You may want to use a specializet SetT class instead.
37 class Set
39 uint32 val;
40 public:
41 Set();
42 Set(uint32 val);
43 virtual ~Set();
44 virtual Set& operator << (uint32);
45 virtual Set& operator >> (uint32);
46 virtual Set& operator = (uint32);
47 virtual bool operator == (uint32);
48 virtual bool ContainsAny(uint32);
49 virtual bool ContainsAll(uint32);
50 virtual operator uint32 ();
53 #endif