summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/examples/PSS/Server_i.h
blob: 768e94d9a4252fde841ef5d507716793c364758e (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
/* -*- C++ -*- */
// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO/orbsvcs/examples/PSS
//
// = FILENAME
//    Server_i.h
//
// = DESCRIPTION
//      This class implements the get_status method in server.idl
//
// = AUTHORS
//     Priyanka Gontla <gontla_p@ociweb.com>
//
// ============================================================================

#ifndef SERVER_I_H
#define SERVER_I_H
#include /**/ "ace/pre.h"

#include "ServerS.h"

class Server_i : public virtual POA_Simple_Server::Server
{
 public:

  Server_i ();

  ~Server_i ();

  virtual char *get_status (void);
};

#include /**/ "ace/post.h"
#endif /* SERVER_I_H */