summaryrefslogtreecommitdiff
path: root/name.h
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2013-04-06 13:14:45 +0200
committerPaul Buetow <paul@buetow.org>2013-04-06 13:14:45 +0200
commit23c5e7d57e1e9216f4da3446656df2dc7202975d (patch)
treeb387afc4ad6acad4681252df8ce8def5dc8aa54d /name.h
parent9dcec1feba68dc5ba38cdc634f5bf113c0f77348 (diff)
tagging ychat-0.1ychat-0.1
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