2 * Sample code from The ACE Programmer's Guide,
3 * copyright 2003 Addison-Wesley. All Rights Reserved.
6 #ifndef __CLIENTCONTEXT_H_
7 #define __CLIENTCONTEXT_H_
9 #include "ace/Hash_Map_Manager.h"
10 #include "ace/Synch.h"
12 typedef ACE_Hash_Map_Manager
<const char *, void *, ACE_Null_Mutex
>
15 // Listing 1 code/ch14
16 // Client-specific context information.
20 void *get_attribute (const char *name
);
21 void set_attribute (const char *name
, void *value
);
28 #endif /* __CLIENTCONTEXT_H_ */