summaryrefslogtreecommitdiff
path: root/TAO/tao/default_resource.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2014-03-07 13:43:36 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2014-03-07 13:43:36 +0000
commit7150c16fa73e0960bbb7ff68571fe7e787f784f8 (patch)
tree8f47ca452f62ae2e1ea37de496e09835e970fe36 /TAO/tao/default_resource.h
parent7af69a0ad4d6e28b1747ceadb2d1a9811960eb8d (diff)
downloadATCD-7150c16fa73e0960bbb7ff68571fe7e787f784f8.tar.gz
Fri Mar 7 13:45:06 UTC 2014 Johnny Willemsen <jwillemsen@remedy.nl>
* tao/Acceptor_Registry.h: * tao/Adapter_Registry.h: * tao/Cleanup_Func_Registry.h: * tao/Compression/zlib/ZlibCompressor_Factory.h: * tao/Condition.h: * tao/Connection_Handler.h: * tao/ObjectKey_Table.h: * tao/Transport.h: * tao/default_resource.h: Use ACE_UNIMPLEMENTED_FUNC instead of ACE_Copy_Disabled, the first maps to =delete with C++11 and results in a small footprint decrease
Diffstat (limited to 'TAO/tao/default_resource.h')
-rw-r--r--TAO/tao/default_resource.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/TAO/tao/default_resource.h b/TAO/tao/default_resource.h
index 47f166736db..e44ac5b1c8e 100644
--- a/TAO/tao/default_resource.h
+++ b/TAO/tao/default_resource.h
@@ -16,7 +16,6 @@
#define TAO_DEFAULT_RESOURCE_H
#include /**/ "ace/pre.h"
-#include "ace/Copy_Disabled.h"
#include "ace/Service_Config.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
@@ -57,7 +56,6 @@ class TAO_RSF_Timer_Queue_Ptr;
*
*/
class TAO_Export TAO_Codeset_Parameters
- : public ACE_Copy_Disabled
{
public:
TAO_Codeset_Parameters (void);
@@ -81,12 +79,13 @@ public:
void apply_to (TAO_Codeset_Descriptor_Base *csd);
private:
+ ACE_UNIMPLEMENTED_FUNC (TAO_Codeset_Parameters (const TAO_Codeset_Parameters &))
+ ACE_UNIMPLEMENTED_FUNC (TAO_Codeset_Parameters &operator= (const TAO_Codeset_Parameters &))
+
ACE_Unbounded_Queue<ACE_TCHAR*> translators_;
ACE_TCHAR* native_;
};
-
-
/**
* @class TAO_Default_Resource_Factory
*