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