summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/ImplRepo/airplane_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/ImplRepo/airplane_i.h')
-rw-r--r--TAO/orbsvcs/tests/ImplRepo/airplane_i.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/TAO/orbsvcs/tests/ImplRepo/airplane_i.h b/TAO/orbsvcs/tests/ImplRepo/airplane_i.h
index 14893908c6d..70a08709f33 100644
--- a/TAO/orbsvcs/tests/ImplRepo/airplane_i.h
+++ b/TAO/orbsvcs/tests/ImplRepo/airplane_i.h
@@ -43,16 +43,18 @@ class Airplane_i: public POA_Paper_Airplane_Server
// at this moment (in other words, a random airplane).
public:
Airplane_i (int shutdown = 0);
- // Constructor that takes in an optional shutdown parameter which,
- // if nonzero, will shutdown the server after each call to
- // get_plane.
+ // Constructor that takes in an optional shutdown parameter which, if nonzero,
+ // will shutdown the server after each call to get_plane.
~Airplane_i (void);
// Destructor
- virtual char *get_plane (CORBA::Environment &ACE_TRY_ENV)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual char *get_plane (CORBA::Environment &ACE_TRY_ENV);
// Returns a random plane.
+
+private:
+ int shutdown_;
+ // Shutdown flag
};
#endif /* AIRPLANE_I_H */