diff options
author | Knut Petter Svendsen <knut@altuma.no> | 2022-09-13 22:57:39 +0200 |
---|---|---|
committer | Knut Petter Svendsen <knut@altuma.no> | 2022-09-13 22:57:39 +0200 |
commit | 3da59eac098c1ef9d2c98f2079185ff35c3b6105 (patch) | |
tree | 379c29e09bf55597fe6740cd163478cd1204a181 /TAO/tests/POA/Default_Servant2/File_i.h | |
parent | fe03724176dcfd20e0f9a6e493198469242be6b6 (diff) | |
download | ATCD-3da59eac098c1ef9d2c98f2079185ff35c3b6105.tar.gz |
Remove obsolescent (void) in functions with no parameters
Diffstat (limited to 'TAO/tests/POA/Default_Servant2/File_i.h')
-rw-r--r-- | TAO/tests/POA/Default_Servant2/File_i.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/tests/POA/Default_Servant2/File_i.h b/TAO/tests/POA/Default_Servant2/File_i.h index df1e8a47aa9..5a2faf71ea3 100644 --- a/TAO/tests/POA/Default_Servant2/File_i.h +++ b/TAO/tests/POA/Default_Servant2/File_i.h @@ -35,10 +35,10 @@ public: Descriptor (PortableServer::POA_ptr poa); /// Destructor - ~Descriptor (void); + ~Descriptor (); /// Returns the default POA of this object - PortableServer::POA_ptr _default_POA (void); + PortableServer::POA_ptr _default_POA (); /// write buffer to File corresponding to this Descriptor virtual CORBA::Long write (const File::Descriptor::DataBuffer &buffer); @@ -50,11 +50,11 @@ public: CORBA::Long whence); /// closes the file corresponding to the requested ObjectID - virtual void destroy (void); + virtual void destroy (); private: /// Extracts the ACE_HANDLE from the objectID - ACE_HANDLE fd (void); + ACE_HANDLE fd (); PortableServer::POA_var poa_; }; @@ -73,17 +73,17 @@ public: PortableServer::POA_ptr poa); ///Destructor - ~System (void); + ~System (); ///Returns the default POA of this object - PortableServer::POA_ptr _default_POA (void); + PortableServer::POA_ptr _default_POA (); /// Opens a file ,creates a Descriptor reference with the /// ACE_HANDLE and returns that reference File::Descriptor_ptr open (const char *file_name, CORBA::Long flags); - void shutdown (void); + void shutdown (); private: CORBA::ORB_var orb_; |