Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #include <sstream>
00016
00017 #include "Reflex/Object.h"
00018 #include "Reflex/Type.h"
00019 #include "TClass.h"
00020
00021
00022 #include "Fireworks/Core/interface/FWSimpleProxyHelper.h"
00023 #include "Fireworks/Core/interface/FWEventItem.h"
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 FWSimpleProxyHelper::FWSimpleProxyHelper(const std::type_info& iType) :
00038 m_itemType(&iType),
00039 m_objectOffset(0)
00040 {
00041 }
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067 void
00068 FWSimpleProxyHelper::itemChanged(const FWEventItem* iItem)
00069 {
00070 if(0!=iItem) {
00071 using namespace ROOT::Reflex;
00072 Type myType = Type::ByTypeInfo(*m_itemType);
00073 Object dummy(Type::ByTypeInfo(*(iItem->modelType()->GetTypeInfo())),
00074 reinterpret_cast<void*>(0xFFFF));
00075 Object castTo = dummy.CastObject(myType);
00076 assert(0!=castTo.Address());
00077 m_objectOffset=static_cast<char*>(dummy.Address())-static_cast<char*>(castTo.Address());
00078 }
00079 }
00080
00081
00082
00083