blob: 20b77126569be8291d13ea03042eba41af964975 (
plain)
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
/* -*- C++ -*- */
/**
* @file Command.h
*
* $Id$
*
* @author Pradeep Gore <pradeep@oomworks.com>
*
*
*/
#ifndef TAO_Notify_Tests_COMMAND_H
#define TAO_Notify_Tests_COMMAND_H
#include /**/ "ace/pre.h"
#include "notify_test_export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Arg_Shifter.h"
#include "ace/Argv_Type_Converter.h"
#include "ace/CORBA_macros.h"
namespace CORBA
{
class Environment;
}
/**
* @class TAO_Notify_Tests_Command
*
* @brief Base Class for all command objects.
*
*/
class TAO_NOTIFY_TEST_Export TAO_Notify_Tests_Command
{
friend class TAO_Notify_Tests_Command_Builder;
public:
/// Constuctor
TAO_Notify_Tests_Command (void);
/// Destructor
virtual ~TAO_Notify_Tests_Command ();
/// Parse args and populate options.
virtual void init (ACE_TArg_Shifter< ACE_TCHAR >& arg_shifter);
/// Implement command execution.
virtual void execute_i (ACE_ENV_SINGLE_ARG_DECL) = 0;
/// Return the name of this command.
virtual const ACE_TCHAR* get_name (void)= 0;
///= Each derived type must also implement the following signature:
// static const ACE_TCHAR* name (void);
protected:
/// Next command after this one.
TAO_Notify_Tests_Command* next_;
enum {INVALID = -1};
int command_;
private:
/// Execute the command.
void execute (ACE_ENV_SINGLE_ARG_DECL);
/// Save the next command to exec.
void next (TAO_Notify_Tests_Command* command);
};
#include /**/ "ace/post.h"
#endif /* TAO_Notify_Tests_COMMAND_H */
|