-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathRequestCmd.hpp
43 lines (32 loc) · 958 Bytes
/
RequestCmd.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 RequestCmd.hpp
//! \brief The RequestCmd class declaration.
//! \author Chris Oldwood
// Check for previous inclusion
#ifndef APP_REQUESTCMD_HPP
#define APP_REQUESTCMD_HPP
#if _MSC_VER > 1000
#pragma once
#endif
#include <WCL/ConsoleCmd.hpp>
////////////////////////////////////////////////////////////////////////////////
//! The DDE command to request the value for one or more items.
class RequestCmd : public WCL::ConsoleCmd
{
public:
//! Constructor.
RequestCmd(int argc, tchar* argv[]);
//! Destructor.
virtual ~RequestCmd();
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_REQUESTCMD_HPP