summaryrefslogtreecommitdiff
path: root/trunk/ACE/examples/APG/ThreadManagement/SecurityContext.h
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/ACE/examples/APG/ThreadManagement/SecurityContext.h')
-rw-r--r--trunk/ACE/examples/APG/ThreadManagement/SecurityContext.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/trunk/ACE/examples/APG/ThreadManagement/SecurityContext.h b/trunk/ACE/examples/APG/ThreadManagement/SecurityContext.h
new file mode 100644
index 00000000000..73adbd1a435
--- /dev/null
+++ b/trunk/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_ */