aboutsummaryrefslogtreecommitdiff
path: root/src/integer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/integer.cpp')
-rw-r--r--src/integer.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/integer.cpp b/src/integer.cpp
index 2a713e3..e89ac1d 100644
--- a/src/integer.cpp
+++ b/src/integer.cpp
@@ -16,6 +16,11 @@ Gats::Integer::~Integer()
16{ 16{
17} 17}
18 18
19Gats::Object *Gats::Integer::clone() const
20{
21 return new Gats::Integer( iVal );
22}
23
19void Gats::Integer::write( Bu::Stream &rOut ) const 24void Gats::Integer::write( Bu::Stream &rOut ) const
20{ 25{
21 rOut.write("i", 1 ); 26 rOut.write("i", 1 );