00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef COIN_SOACTIONMETHODLIST_H
00021 #define COIN_SOACTIONMETHODLIST_H
00022
00023 #include <Inventor/lists/SbPList.h>
00024 #include <Inventor/SoType.h>
00025
00026 class SoAction;
00027 class SoNode;
00028
00029 typedef void (* SoActionMethod)(SoAction *, SoNode *);
00030
00031 class COIN_DLL_API SoActionMethodList : public SbPList {
00032 typedef SbPList inherited;
00033
00034 public:
00035 SoActionMethodList(SoActionMethodList * const parentlist);
00036 ~SoActionMethodList();
00037
00038 SoActionMethod & operator[](const int index);
00039
00040 void addMethod(const SoType node, const SoActionMethod method);
00041 void setUp(void);
00042
00043 private:
00044 class SoActionMethodListP * pimpl;
00045 };
00046
00047 #endif // !COIN_SOACTIONMETHODLIST_H