BcPOC
SF-HRP ASM implementation
|
00001 #ifndef _I_RELEASEABLE_ 00002 #define _I_RELEASEABLE_ 00003 00004 #include <string> 00005 #include <vector> 00006 00011 class IReleaseable { 00012 public: 00013 00017 virtual void Activate() = 0; 00018 00022 virtual void Deactivate() = 0; 00023 00024 00025 }; 00026 00027 #endif