Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-09 07:49:39

0001 #include <vector>
0002 #include <string>
0003 
0004 #include "plog/Severity.h"
0005 #include "SCtrl.hh"
0006 
0007 #include "SYSRAP_API_EXPORT.hh"
0008 
0009 class SYSRAP_API SMockViz : public SCtrl 
0010 {
0011    private:
0012        static const plog::Severity LEVEL ; 
0013    public:
0014        SMockViz(); 
0015        void command(const char* cmd); 
0016    private:
0017        std::vector<std::string> m_commands ; 
0018 };
0019 
0020