00001 #ifndef CAFE_PERMUTE_HPP__ 00002 #define CAFE_PERMUTE_HPP__ 00003 00004 #include "cafe/Controller.hpp" 00005 00006 namespace cafe { 00007 00032 class Permute : public Controller { 00033 public: 00034 Permute(const char *name); 00035 ~Permute(); 00036 00037 // process interface 00038 virtual bool processEvent(cafe::Event& event); 00039 public: 00040 ClassDef(Permute,1); 00041 }; 00042 00043 } 00044 00045 #endif // CAFE_PERMUTE_HPP__
1.3.4