-
Notifications
You must be signed in to change notification settings - Fork 8
/
PokeCmd.hpp
43 lines (32 loc) · 923 Bytes
/
PokeCmd.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
////////////////////////////////////////////////////////////////////////////////
//! \file PokeCmd.hpp
//! \brief The PokeCmd class declaration.
//! \author Chris Oldwood
// Check for previous inclusion
#ifndef APP_POKECMD_HPP
#define APP_POKECMD_HPP
#if _MSC_VER > 1000
#pragma once
#endif
#include <WCL/ConsoleCmd.hpp>
////////////////////////////////////////////////////////////////////////////////
//! The DDE command used to set a value for an item.
class PokeCmd : public WCL::ConsoleCmd
{
public:
//! Constructor.
PokeCmd(int argc, tchar* argv[]);
//! Destructor.
virtual ~PokeCmd();
private:
//
// Command methods.
//
//! Get the description of the command.
virtual const tchar* getDescription();
//! Get the expected command usage.
virtual const tchar* getUsage();
//! The implementation of the command.
virtual int doExecute(tostream& out, tostream& err);
};
#endif // APP_POKECMD_HPP