00001 #ifndef FOREIGN_ARCHITECTURE_HH 00002 #define FOREIGN_ARCHITECTURE_HH 00003 00004 #include "tyvis/_savant_entity_elab.hh" 00005 00006 class ForeignArchitecture { 00007 public: 00008 ForeignArchitecture( _savant_entity_elab *initEntity ); 00009 virtual ~ForeignArchitecture() = 0; 00010 00011 void executeProcess(); 00012 00013 protected: 00014 00015 private: 00016 const _savant_entity_elab *myEntity; 00017 }; 00018 00019 #endif
1.4.6