summaryrefslogtreecommitdiff
path: root/TAO/tests/Xt_Stopwatch/test_i.h
blob: 9e720422d35d8bf9a81b4276c73a1ffc0eab68b6 (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

//=============================================================================
/**
 *  @file   test_i.h
 *
 *  @author Bala
 */
//=============================================================================


#ifndef SERVER_TEST_I_H
#define SERVER_TEST_I_H

#include "testS.h"
#include "timer.h"


/**
 * @class Stopwatch_imp
 *
 * @brief Stopwatch implementation class
 *
 * Implements the Stopwatch interface in test.idl
 */
class Stopwatch_imp : public POA_Stopwatch
{
public:
  /// ctor
  Stopwatch_imp (CORBA::ORB_ptr, Timer_imp *);

  // = The Simple_Server methods.
  void start (void);

  void stop (void);

  void shutdown (void);

private:
  /// The ORB
  CORBA::ORB_var orb_;

  /// Hold the timer object...
  Timer_imp *timer_;
};

#endif /* SERVER_TEST_I_H */