summaryrefslogtreecommitdiff
path: root/TAO/tao/Arg_Traits_T.h
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2003-07-01 03:30:58 +0000
committerbala <balanatarajan@users.noreply.github.com>2003-07-01 03:30:58 +0000
commitc4218b9725988b4e1061155c3616477a46d8425c (patch)
tree7b247d1ef21c897401827a3d90d41e82d2fdd8d6 /TAO/tao/Arg_Traits_T.h
parentd1f4ec89b4761404ac8678402752bf65eaa60485 (diff)
downloadATCD-refactor-stage4.tar.gz
ChangeLogTag:Mon Jun 30 22:29:51 2003 Balachandran Natarajan <bala@dre.vanderbilt.edu>refactor-stage4
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 */