aboutsummaryrefslogtreecommitdiff
path: root/c++-qt/src/float.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c++-qt/src/float.cpp')
-rw-r--r--c++-qt/src/float.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/c++-qt/src/float.cpp b/c++-qt/src/float.cpp
index 7f0d1a3..d4ec76e 100644
--- a/c++-qt/src/float.cpp
+++ b/c++-qt/src/float.cpp
@@ -126,6 +126,12 @@ void Gats::Float::read( QIODevice &rIn, char cType )
126 if( bNeg ) fVal = -fVal; 126 if( bNeg ) fVal = -fVal;
127 } 127 }
128} 128}
129
130QString Gats::Float::toString( int /*iIndent*/ ) const
131{
132 return QString("%1").arg( fVal );
133}
134
129/* 135/*
130Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Float &flt ) 136Bu::Formatter &operator<<( Bu::Formatter &f, const Gats::Float &flt )
131{ 137{