blob: d54b811fef8234973e4c548a25acd80ea0da6b16 (
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
|
// -*- C++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/Simple/echo
//
// = FILENAME
// Echo_i.h
//
// = DESCRIPTION
// This class implements the Echo IDL interface.
//
// = AUTHOR
// Kirthika Parameswaran <kirthika@cs.wustl.edu>
//
// ============================================================================
#ifndef ECHO_I_H
#define ECHO_I_H
#include "EchoS.h"
class Echo_i : public POA_Echo
{
// = TITLE
// Echo Object Implementation
//
// = DESCRIPTION
// The object implementation performs teh following functions:
// -- To return the string which needs to be displayed
// from the server.
// -- shuts down the server
public:
// = Initialization and termination methods.
Echo_i (void);
// Constructor.
~Echo_i (void);
// Destructor.
virtual char *echo (const char *mesg,
CORBA::Environment &env);
// Return the mesg string back from the server.
virtual void shutdown (CORBA::Environment &env);
// Shutdown the server.
void orb (CORBA::ORB_ptr o);
// Set the ORB pointer.
private:
CORBA::ORB_var orb_;
// ORB pointer.
};
#endif /* ECHO_I_H */
|