aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/src/null.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c++-qt/src/null.cpp')
-rw-r--r--c++-qt/src/null.cpp7
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
30void Gats::Null::read( QIODevice &rIn, char cType ) 30void Gats::Null::read( QIODevice & /*rIn*/, char /*cType*/ )
31{ 31{
32} 32}
33
34QString Gats::Null::toString( int /*iIndent*/ ) const
35{
36 return "null";
37}
33/* 38/*
34Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Null &b ) 39Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Null &b )
35{ 40{