-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathExecuteCmd.hpp
43 lines (32 loc) · 965 Bytes
/
ExecuteCmd.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 ExecuteCmd.hpp
//! \brief The ExecuteCmd class declaration.
//! \author Chris Oldwood
// Check for previous inclusion
#ifndef APP_EXECUTECMD_HPP
#define APP_EXECUTECMD_HPP
#if _MSC_VER > 1000
#pragma once
#endif
#include <WCL/ConsoleCmd.hpp>
////////////////////////////////////////////////////////////////////////////////
//! The DDE command used to send a string for execution by the server.
class ExecuteCmd : public WCL::ConsoleCmd
{
public:
//! Constructor.
ExecuteCmd(int argc, tchar* argv[]);
//! Destructor.
virtual ~ExecuteCmd();
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_EXECUTECMD_HPP