Gray C++ Libraries  0.0.2
A set of C++ libraries for MSVC, GNU on Windows, WinCE, Linux
cCmdCPULoad.h
Go to the documentation of this file.
1 //
4 //
5 
6 #ifndef _INC_cCmdCPULoad_H
7 #define _INC_cCmdCPULoad_H
8 #ifndef NO_PRAGMA_ONCE
9 #pragma once
10 #endif
11 
12 #include "GrayX.h"
13 
14 namespace GrayX
15 {
16  class cCmdCPULoad : public GrayXCmd
17  {
20  public:
21  cCmdCPULoad();
22  virtual ~cCmdCPULoad();
23 
24  virtual HRESULT DoCmd(const FILECHAR_t* pszArgs) override;
25  };
26 }
27 
28 #endif
INT32 HRESULT
_WIN32 style error codes. INT32
Definition: SysTypes.h:465
Definition: GrayX.h:43
Definition: cCmdCPULoad.h:17
virtual ~cCmdCPULoad()
Definition: cCmdCPULoad.cpp:33
cCmdCPULoad()
Definition: cCmdCPULoad.cpp:29
virtual HRESULT DoCmd(const FILECHAR_t *pszArgs) override
Definition: cCmdCPULoad.cpp:37
Definition: GrayX.cpp:52
char FILECHAR_t
a UTF8 char in a file name. like TCHAR
Definition: FileName.h:22