blob: 3ebb7c72b535cec1b22d39876017d164631c8695 (
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
|
// -*- C++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO/tests/Simple
//
// = FILENAME
// Server_i.h
//
// = DESCRIPTION
// A CORBA server that initializes the time server implementation
// and the ORB.
//
// = AUTHORS
// Darrell Brunsch <brunsch@cs.wustl.edu>
//
// ============================================================================
#ifndef SERVER_I_H
#define SERVER_I_H
#include "Time_i.h"
#include "tao/TAO.h"
class Server_i
{
// = TITLE
// CORBA Server implementation.
public:
// = Initialization and termination methods.
Server_i (void);
// Constructor.
~Server_i (void);
// Destructor.
int init (int argc, char *argv[], CORBA::Environment &env);
// Initialize the Server state - parsing arguments and waiting.
int run (CORBA::Environment &env);
// Run the orb.
private:
Time_i servant_;
// Servant for the Time interface.
int parse_args (void);
// Parses the commandline arguments.
TAO_ORB_Manager orb_manager_;
// The ORB manager.
FILE *ior_output_file_;
// File where the IOR of the server object is stored.
int argc_;
// Number of command line arguments.
char **argv_;
// The command line arguments.
};
#endif /* TIME_IMPL_H */
|