00001 #ifndef _IT_REFLECT_SIMPLE_TYPE_H_
00002 #define _IT_REFLECT_SIMPLE_TYPE_H_
00003
00004
00005
00006 #include <it_bus/reflect/reflection.h>
00007
00008 namespace IT_Reflect
00009 {
00017 class IT_AFC_API SimpleType : public virtual IT_Reflect::Reflection
00018 {
00019 public:
00023 SimpleType() throw(());
00024
00028 virtual ~SimpleType() throw(());
00029
00030 private:
00031
00032 SimpleType(const SimpleType&);
00033 void operator=(const SimpleType&);
00034 };
00035 }
00036
00037
00038 #endif