summaryrefslogtreecommitdiff
path: root/ACE/TAO/tao/AnyTypeCode/BasicTypeTraits_T.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/TAO/tao/AnyTypeCode/BasicTypeTraits_T.h')
-rw-r--r--ACE/TAO/tao/AnyTypeCode/BasicTypeTraits_T.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/ACE/TAO/tao/AnyTypeCode/BasicTypeTraits_T.h b/ACE/TAO/tao/AnyTypeCode/BasicTypeTraits_T.h
new file mode 100644
index 00000000000..9e1321f36c7
--- /dev/null
+++ b/ACE/TAO/tao/AnyTypeCode/BasicTypeTraits_T.h
@@ -0,0 +1,42 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file BasicTypeTraits_T.h
+ *
+ * $Id$
+ *
+ * Template traits useful for programming with predefined types.
+ *
+ * @author Jeff Parsons <j.parsons@vanderbilt.edu>
+ */
+//=============================================================================
+
+#ifndef BASIC_TYPE_TRAITS_T_H
+#define BASIC_TYPE_TRAITS_T_H
+
+#include /**/ "ace/pre.h"
+
+#include "tao/orbconf.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+TAO_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace TAO
+{
+ // Forward declaration forces specialization for each type used,
+ // necessary since each instantiated struct has values that cannot
+ // be set generically, so they must be set explicitly and exported.
+ template<typename T>
+ struct BasicTypeTraits;
+}
+
+TAO_END_VERSIONED_NAMESPACE_DECL
+
+#include /**/ "ace/post.h"
+
+#endif /* BASIC_TYPE_TRAITS_T_H */
+