diff options
Diffstat (limited to '')
| -rw-r--r--[l---------] | c++-qt/gats-qt/null.h | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/c++-qt/gats-qt/null.h b/c++-qt/gats-qt/null.h index e80cf61..f3ec45b 120000..100644 --- a/c++-qt/gats-qt/null.h +++ b/c++-qt/gats-qt/null.h | |||
| @@ -1 +1,35 @@ | |||
| 1 | ../src/null.h \ No newline at end of file | 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_NULL_H | ||
| 9 | #define GATS_NULL_H | ||
| 10 | |||
| 11 | #include "gats-qt/object.h" | ||
| 12 | |||
| 13 | class QIODevice; | ||
| 14 | |||
| 15 | namespace Gats | ||
| 16 | { | ||
| 17 | class Null : public Gats::Object | ||
| 18 | { | ||
| 19 | Q_OBJECT; | ||
| 20 | public: | ||
| 21 | Null(); | ||
| 22 | virtual ~Null(); | ||
| 23 | |||
| 24 | virtual Object *clone() const; | ||
| 25 | |||
| 26 | virtual Type getType() const { return typeNull; } | ||
| 27 | |||
| 28 | virtual void write( QIODevice &rOut ) const; | ||
| 29 | virtual void read( QIODevice &rIn, char cType ); | ||
| 30 | }; | ||
| 31 | }; | ||
| 32 | |||
| 33 | //Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Null &b ); | ||
| 34 | |||
| 35 | #endif | ||
