summaryrefslogtreecommitdiff
path: root/name.h
diff options
context:
space:
mode:
Diffstat (limited to 'name.h')
-rw-r--r--[-rwxr-xr-x]name.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/name.h b/name.h
index b895389..28a2f91 100755..100644
--- a/name.h
+++ b/name.h
@@ -14,15 +14,15 @@ protected:
string s_name; // object's name.
public:
+ // small inline methods:
virtual string get_name ( ) const;
virtual void set_name ( string s_name );
-
// public methods:
explicit name( ) { }; // a standard constructor.
explicit name( string s_name ); // a standard constructor.
- ~name( );
+ ~name();
};
#endif