-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathServersCmd.hpp
43 lines (32 loc) · 955 Bytes
/
ServersCmd.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 ServersCmd.hpp
//! \brief The ServersCmd class declaration.
//! \author Chris Oldwood
// Check for previous inclusion
#ifndef APP_SERVERSCMD_HPP
#define APP_SERVERSCMD_HPP
#if _MSC_VER > 1000
#pragma once
#endif
#include <WCL/ConsoleCmd.hpp>
////////////////////////////////////////////////////////////////////////////////
//! The command used to list the running servers and topics.
class ServersCmd : public WCL::ConsoleCmd
{
public:
//! Constructor.
ServersCmd(int argc, tchar* argv[]);
//! Destructor.
virtual ~ServersCmd();
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_SERVERSCMD_HPP