diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 17:22:33 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2012-11-09 17:22:33 +0000 |
| commit | 29e854354982dcdd8f548ca10b2f2f6b889b280c (patch) | |
| tree | c973a1ec59e625dc9d1627abad3ac30cae6814fd /c++-qt/src/boolean.h | |
| parent | d534a56d95bca7bdd812be024d9eacba4734e2b7 (diff) | |
| download | libgats-29e854354982dcdd8f548ca10b2f2f6b889b280c.tar.gz libgats-29e854354982dcdd8f548ca10b2f2f6b889b280c.tar.bz2 libgats-29e854354982dcdd8f548ca10b2f2f6b889b280c.tar.xz libgats-29e854354982dcdd8f548ca10b2f2f6b889b280c.zip | |
The attempt to use symlinks in place of the header files was silly.
Diffstat (limited to 'c++-qt/src/boolean.h')
| -rw-r--r-- | c++-qt/src/boolean.h | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/c++-qt/src/boolean.h b/c++-qt/src/boolean.h deleted file mode 100644 index 7e42981..0000000 --- a/c++-qt/src/boolean.h +++ /dev/null | |||
| @@ -1,41 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * Copyright (C) 2007-2012 Xagasoft, All rights reserved. | ||
| 3 | * | ||
| 4 | * This file is part of the libgats library and is released under the | ||
| 5 | * terms of the license contained in the file LICENSE. | ||
| 6 | */ | ||
| 7 | |||
| 8 | #ifndef GATS_BOOLEAN_H | ||
| 9 | #define GATS_BOOLEAN_H | ||
| 10 | |||
| 11 | #include "gats-qt/object.h" | ||
| 12 | |||
| 13 | class QIODevice; | ||
| 14 | |||
| 15 | namespace Gats | ||
| 16 | { | ||
| 17 | class Boolean : public Gats::Object | ||
| 18 | { | ||
| 19 | Q_OBJECT; | ||
| 20 | public: | ||
| 21 | Boolean(); | ||
| 22 | Boolean( bool bVal ); | ||
| 23 | virtual ~Boolean(); | ||
| 24 | |||
| 25 | virtual Object *clone() const; | ||
| 26 | |||
| 27 | virtual Type getType() const { return typeBoolean; } | ||
| 28 | bool getValue() const { return bVal; } | ||
| 29 | void setValue( bool b ) { bVal = b; } | ||
| 30 | |||
| 31 | virtual void write( QIODevice &rOut ) const; | ||
| 32 | virtual void read( QIODevice &rIn, char cType ); | ||
| 33 | |||
| 34 | private: | ||
| 35 | bool bVal; | ||
| 36 | }; | ||
| 37 | }; | ||
| 38 | |||
| 39 | //Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Boolean &b ); | ||
| 40 | |||
| 41 | #endif | ||
