UniSet  2.2.1
SMViewer.h
00001 //--------------------------------------------------------------------------------
00002 #ifndef _SMVIEWER_H
00003 #define _SMVIEWER_H
00004 //--------------------------------------------------------------------------------
00005 #include <string>
00006 #include <memory>
00007 #include "SViewer.h"
00008 #include "SMInterface.h"
00009 //--------------------------------------------------------------------------------
00010 class SMViewer:
00011     public SViewer
00012 {
00013     public:
00014         SMViewer( UniSetTypes::ObjectId shmID );
00015         virtual ~SMViewer();
00016 
00017         void run();
00018 
00019     protected:
00020 
00021         std::shared_ptr<SMInterface> shm;
00022     private:
00023 };
00024 // --------------------------------------------------------------------------
00025 #endif
00026 // --------------------------------------------------------------------------