summaryrefslogtreecommitdiff
path: root/TAO/tao/Arg_Traits_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Arg_Traits_T.h')
-rw-r--r--TAO/tao/Arg_Traits_T.h38
1 files changed, 38 insertions, 0 deletions
diff --git a/TAO/tao/Arg_Traits_T.h b/TAO/tao/Arg_Traits_T.h
new file mode 100644
index 00000000000..90e736a4170
--- /dev/null
+++ b/TAO/tao/Arg_Traits_T.h
@@ -0,0 +1,38 @@
+// This may look like C, but it's really -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Arg_Traits_T.h
+ *
+ * $Id$
+ *
+ * @authors Jeff Parsons and Carlos O'Ryan
+ */
+//=============================================================================
+
+
+#ifndef TAO_ARG_TRAITS_T_H
+#define TAO_ARG_TRAITS_T_H
+
+#include "ace/pre.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+namespace TAO
+{
+ /**
+ *
+ * @brief Base class for all arg traits specializations.
+ *
+ */
+ template<typename T>
+ class Arg_Traits
+ {
+ };
+};
+
+#include "ace/post.h"
+
+#endif /* TAO_ARG_TRAITS_T_H */