DDS-PSM-C++  1.0
ISO C++ API for OpenSplice DDS
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros
StructType.hpp
Go to the documentation of this file.
1 #ifndef OMG_DDS_CORE_XTYPES_DETAIL_STRUCT_TYPE_HPP_
2 #define OMG_DDS_CORE_XTYPES_DETAIL_STRUCT_TYPE_HPP_
3 
4 
5 namespace dds {
6  namespace core {
7  namespace xtypes {
8  namespace detail {
9 
10 
11  class StructType { };
12  template <typename T>
13  bool isFinal(const TStructType<T>& s) { return false; }
14 
15  template <typename T>
16  bool isExtensible(const TStructType<T>& s) { return false; }
17 
18  template <typename T>
19  bool isMutable(const TStructType<T>& s) { return false; }
20 
21  template <typename T>
22  bool isNested(const TStructType<T>& s) { return false; }
23  }
24  }
25  }
26 }
27 
28 
29 
30 #endif /* OMG_DDS_CORE_XTYPES_DETAIL_STRUCT_TYPE_HPP_ */