diff options
Diffstat (limited to 'ACE/examples/APG/ThreadManagement/SecurityContext.h')
-rw-r--r-- | ACE/examples/APG/ThreadManagement/SecurityContext.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/ACE/examples/APG/ThreadManagement/SecurityContext.h b/ACE/examples/APG/ThreadManagement/SecurityContext.h new file mode 100644 index 00000000000..73adbd1a435 --- /dev/null +++ b/ACE/examples/APG/ThreadManagement/SecurityContext.h @@ -0,0 +1,16 @@ +/** + * $Id$ + * + * Sample code from The ACE Programmer's Guide, + * copyright 2003 Addison-Wesley. All Rights Reserved. + */ + +#ifndef __SECURITYCONTEXT_H_ +#define __SECURITYCONTEXT_H_ + +struct SecurityContext + { + const char * user; + }; + +#endif /* __SECURITYCONTEXT_H_ */ |