summaryrefslogtreecommitdiff
path: root/TAO/tests/Exposed_Policies/Counter_i.cpp
blob: 09417dd932bce5f2bf3ea24714801cdf989160b9 (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
//$Id$

#include "Counter_i.h"

ACE_RCSID(tao, Counter_Servant, "$Id$")

// Dtor-Ctor Implementation

Counter_Servant::Counter_Servant (CORBA::ORB_ptr o)
  : count_ (0),
    orb_ (CORBA::ORB::_duplicate (o))
{
}

Counter_Servant::~Counter_Servant (void)
{
}

// Counter Interface Methods Implementation

// @@ Angelo, you are going to get warnings about unused environment
// parameter in the methods below.

// @@ Angelo: you are missing all the throw specs, please fix.

void
Counter_Servant::increment (CORBA::Environment &ACE_TRY_ENV)
{
  ++this->count_;
}

CORBA::Long
Counter_Servant::get_count (CORBA::Environment &ACE_TRY_ENV)
{
  return this->count_;
}

// @@ Angelo, it is important that thowspecs in .h file match
// throwspecs in .cpp file, which is not the case for the method
// below.  You will get warnings here.
void
Counter_Servant::shutdown (CORBA::Environment &ACE_TRY_ENV)
{
  this->orb_->shutdown ();
}

// @@ Angelo, please *use* environment parameter to catch exceptions,
// i.e., ORB::shutdown takes environment argument - use it!