summaryrefslogtreecommitdiff
path: root/TAO/examples/Simple/grid/Grid_i.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/examples/Simple/grid/Grid_i.h')
-rw-r--r--TAO/examples/Simple/grid/Grid_i.h27
1 files changed, 9 insertions, 18 deletions
diff --git a/TAO/examples/Simple/grid/Grid_i.h b/TAO/examples/Simple/grid/Grid_i.h
index 96d5bdf6e2e..d905e6e60cc 100644
--- a/TAO/examples/Simple/grid/Grid_i.h
+++ b/TAO/examples/Simple/grid/Grid_i.h
@@ -42,39 +42,32 @@ public:
~Grid_i (void);
// Destructor
- virtual CORBA::Short width (CORBA_Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual CORBA::Short width (CORBA_Environment &);
// Returns the width of the grid
- virtual CORBA::Short height (CORBA_Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual CORBA::Short height (CORBA_Environment &);
// Returns the height of the grid
virtual void width (CORBA::Short,
- CORBA_Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ CORBA_Environment &);
// Sets the width of the grid.
virtual void height (CORBA::Short,
- CORBA_Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ CORBA_Environment &);
// Sets the height of the grid.
virtual void set (CORBA::Short,
CORBA::Short,
CORBA::Long,
- CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ CORBA::Environment &);
// Sets the grid value.
virtual CORBA::Long get (CORBA::Short,
CORBA::Short,
- CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ CORBA::Environment &);
// Gets the grid value.
- virtual void destroy (CORBA::Environment &)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void destroy (CORBA::Environment &);
// Destroy the grid.
private:
@@ -105,12 +98,10 @@ public:
virtual Grid_ptr make_grid (CORBA::Short,
CORBA::Short,
- CORBA::Environment &_env)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ CORBA::Environment &_env);
// This function creates and returns a <Grid>.
- virtual void shutdown (CORBA::Environment &env)
- ACE_THROW_SPEC ((CORBA::SystemException));
+ virtual void shutdown (CORBA::Environment &env);
// Shutdown the server.
void orb (CORBA::ORB_ptr o);