blob: e650d347db7e39962b45719be2a00280f059ec23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
// class cont implementation.
#ifndef CONT_CXX
#define CONT_CXX
#include "cont.h"
#include "MUTX.h"
using namespace std;
string
cont::get_val( string s_key )
{
#ifdef VERBOSE_
pthread_mutex_lock ( &MUTX::get().mut_stdout );
cout << "cont::get_val( \"" << s_key << "\" )" << endl;
pthread_mutex_unlock( &MUTX::get().mut_stdout );
#endif
if ( map_vals.find( s_key ) != map_vals.end() )
return map_vals[ s_key ];
return string();
}
cont::~cont()
{
#ifdef VERBOSE_
pthread_mutex_lock ( &MUTX::get().mut_stdout );
cout << "cont::cont()" << endl;
pthread_mutex_unlock( &MUTX::get().mut_stdout );
#endif
map_vals.~map_string();
}
#endif
|