Changeset 3366 in Sophya for trunk/SophyaPI/PIext/piacmd.h
- Timestamp:
- Oct 30, 2007, 1:57:40 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/piacmd.h
r2999 r3366 100 100 101 101 102 // 103 // --------------------------------------------------------------------- 104 // Classe d'execution d'operations simples, comme affichage (display) 105 // print , del ... issues en particulier de la boucle d'evts 106 // (PIStdImgApp, ObjMgrWind , ...) 107 // --------------------------------------------------------------------- 108 109 class SOpExObj : public ZThread { 110 public: 111 SOpExObj(PIStdImgApp* app); 112 virtual ~SOpExObj(); 113 114 // Thread execution <ZThread> 115 virtual void run(); 116 void AddOpe(string const & line); 117 void StopThread(); 118 119 protected: 120 PIStdImgApp* mImgApp; 121 queue<string> inputlines; 122 ZMutex mutx_inps; 123 bool fg_thrstop; 124 bool fg_threxe; 125 }; 126 127 128 102 129 103 130 #endif
Note:
See TracChangeset
for help on using the changeset viewer.