summaryrefslogtreecommitdiff
path: root/src/name.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/name.cpp')
-rwxr-xr-xsrc/name.cpp34
1 files changed, 18 insertions, 16 deletions
diff --git a/src/name.cpp b/src/name.cpp
index 79167f5..646b4d9 100755
--- a/src/name.cpp
+++ b/src/name.cpp
@@ -1,3 +1,5 @@
+// class name implementation.
+
#ifndef NAME_CPP
#define NAME_CPP
@@ -8,42 +10,42 @@ using namespace std;
name::name()
{
- pthread_mutex_init( &mut_s_name, NULL);
+ pthread_mutex_init( &mut_s_name, NULL);
}
-
name::name( string s_name )
{
- pthread_mutex_init( &mut_s_name, NULL);
- set_name( s_name );
+ pthread_mutex_init( &mut_s_name, NULL);
+ set_name( s_name );
}
name::~name()
{
- pthread_mutex_destroy( &mut_s_name );
+ pthread_mutex_destroy( &mut_s_name );
}
string
-name::get_name()
+name::get_name()
{
- string s_ret;
- pthread_mutex_lock ( &mut_s_name );
- s_ret = s_name;
- pthread_mutex_unlock( &mut_s_name );
- return s_ret;
+ string s_ret;
+ pthread_mutex_lock ( &mut_s_name );
+ s_ret = s_name;
+ pthread_mutex_unlock( &mut_s_name );
+ return s_ret;
}
string
-name::get_lowercase_name()
+name::get_lowercase_name()
{
- return tool::to_lower( get_name() );
+ return tool::to_lower( get_name() );
}
void
name::set_name( string s_name )
{
- pthread_mutex_lock ( &mut_s_name );
- this->s_name = s_name;
- pthread_mutex_unlock( &mut_s_name );
+ pthread_mutex_lock ( &mut_s_name );
+ this->s_name = s_name;
+ pthread_mutex_unlock( &mut_s_name );
}
+
#endif