00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef SST_INTROSPECTACTION_H
00014 #define SST_INTROSPECTACTION_H
00015
00016
00017 #include <sst/core/debug.h>
00018 #include <sst/core/action.h>
00019 #include <sst/core/event.h>
00020
00021 namespace SST {
00022
00023 class IntrospectAction : public Action {
00024 public:
00025 IntrospectAction(Event::HandlerBase* handler) : Action(),
00026 m_handler( handler )
00027 {
00028 setPriority(30);
00029 }
00030 virtual ~IntrospectAction(){}
00031
00032 void execute(void);
00033
00034
00035 private:
00036 IntrospectAction() { }
00037 Event::HandlerBase* m_handler;
00038
00039 friend class boost::serialization::access;
00040 template<class Archive>
00041 void
00042 serialize(Archive & ar, const unsigned int version );
00043
00044 };
00045
00046 }
00047
00048 BOOST_CLASS_EXPORT_KEY(SST::IntrospectAction)
00049
00050 #endif // SST_INTROSPECTACTION_H