diff options
Diffstat (limited to '')
-rw-r--r-- | c++-qt/src/null.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/c++-qt/src/null.cpp b/c++-qt/src/null.cpp index 8bc87a6..5e3a19c 100644 --- a/c++-qt/src/null.cpp +++ b/c++-qt/src/null.cpp | |||
@@ -27,9 +27,14 @@ void Gats::Null::write( QIODevice &rOut ) const | |||
27 | rOut.write("n", 1 ); | 27 | rOut.write("n", 1 ); |
28 | } | 28 | } |
29 | 29 | ||
30 | void Gats::Null::read( QIODevice &rIn, char cType ) | 30 | void Gats::Null::read( QIODevice & /*rIn*/, char /*cType*/ ) |
31 | { | 31 | { |
32 | } | 32 | } |
33 | |||
34 | QString Gats::Null::toString( int /*iIndent*/ ) const | ||
35 | { | ||
36 | return "null"; | ||
37 | } | ||
33 | /* | 38 | /* |
34 | Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Null &b ) | 39 | Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Null &b ) |
35 | { | 40 | { |