00001 #ifndef _IT_BUSIMPL_IMPLEMENTATION_DETAILS_H_
00002 #define _IT_BUSIMPL_IMPLEMENTATION_DETAILS_H_
00003
00004
00005
00006
00007 #include <it_bus/api_defines.h>
00008
00009 namespace IT_Bus
00010 {
00011 class IT_AFC_API ImplementationDetails
00012 {
00013 public:
00014 enum ImplementationType
00015 {
00016 CPP,
00017 JAVA,
00018 DYN
00019 };
00020
00021 virtual ~ImplementationDetails();
00022
00023 virtual ImplementationType
00024 get_implementation_type() const;
00025 };
00026 }
00027
00028
00029 #endif