Go to the documentation of this file.00001 #ifndef Fireworks_Core_FWSimpleProxyHelper_h
00002 #define Fireworks_Core_FWSimpleProxyHelper_h
00003
00004
00005
00006
00007
00016
00017
00018
00019
00020
00021
00022
00023 #include <typeinfo>
00024 #include <string>
00025
00026
00027
00028
00029 class FWEventItem;
00030
00031 class FWSimpleProxyHelper {
00032
00033 public:
00034 FWSimpleProxyHelper(const std::type_info& );
00035
00036
00037
00038 const void* offsetObject(const void* iObj) const {
00039 return static_cast<const char*> (iObj)+m_objectOffset;
00040 }
00041
00042
00043
00044
00045 void itemChanged(const FWEventItem*);
00046 private:
00047
00048
00049
00050
00051
00052 const std::type_info* m_itemType;
00053 unsigned int m_objectOffset;
00054
00055 };
00056
00057
00058 #endif