00001 00015 #ifndef APPLICATION_H 00016 #define APPLICATION_H 00017 00018 00019 namespace SMP{ 00020 00024 class SMPApplication 00025 { 00026 private: 00028 int app_id; 00029 00031 vector<SMPBuffer*> smp_buffer; 00033 vector<SMPSignalBuffer*> smp_sigbuffer; 00035 vector<SMPFilter*> smp_filter; 00036 00037 public: 00038 SMPApplication(); 00039 ~SMPApplication(); 00040 00041 }; 00042 00043 00044 }//end namespace 00045 #endif