summaryrefslogtreecommitdiff
path: root/ACE/ace/Codecs.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-01-20 14:28:57 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-01-20 14:28:57 +0100
commitd6c5fa19716b710de9738e80cc5c2840670a921e (patch)
treeef4e898008b1c20f8368e14422daee69a32cb7c0 /ACE/ace/Codecs.h
parentf480c6cc4f2335b79e350b596cbbe225b728ca7e (diff)
downloadATCD-d6c5fa19716b710de9738e80cc5c2840670a921e.tar.gz
Minor layout/doxygen changes, gathered through time
* ACE/ace/ACE.inl: * ACE/ace/ATM_Acceptor.cpp: * ACE/ace/ATM_Addr.cpp: * ACE/ace/ATM_Connector.cpp: * ACE/ace/ATM_Params.cpp: * ACE/ace/ATM_QoS.cpp: * ACE/ace/ATM_QoS.h: * ACE/ace/ATM_Stream.h: * ACE/ace/Acceptor.h: * ACE/ace/Active_Map_Manager_T.h: * ACE/ace/Argv_Type_Converter.h: * ACE/ace/Array_Base.h: * ACE/ace/Array_Map.h: * ACE/ace/Asynch_IO.h: * ACE/ace/Atomic_Op_T.h: * ACE/ace/Base_Thread_Adapter.h: * ACE/ace/CDR_Base.h: * ACE/ace/CDR_Size.h: * ACE/ace/CDR_Stream.h: * ACE/ace/CE_Screen_Output.h: * ACE/ace/Cache_Map_Manager_T.h: * ACE/ace/Cached_Connect_Strategy_T.h: * ACE/ace/Caching_Strategies_T.h: * ACE/ace/Caching_Utility_T.h: * ACE/ace/Capabilities.h: * ACE/ace/Cleanup_Strategies_T.h: * ACE/ace/Codecs.h: * ACE/ace/Codeset_Registry.h: * ACE/ace/Compression/Compressor.h: * ACE/ace/Configuration.h: * ACE/ace/Connector.h: * ACE/ace/Containers_T.h: * ACE/ace/Copy_Disabled.h: * ACE/ace/DEV_Connector.h: * ACE/ace/DLL.h: * ACE/ace/DLL_Manager.h: * ACE/ace/Dev_Poll_Reactor.h: * ACE/ace/Dynamic_Message_Strategy.h: * ACE/ace/ETCL/ETCL_Constraint.h: * ACE/ace/MEM_Stream.h: * ACE/ace/Profile_Timer.h: * ACE/ace/SUN_Proactor.h: * ACE/ace/String_Base_Const.h: * ACE/ace/Svc_Handler.h:
Diffstat (limited to 'ACE/ace/Codecs.h')
-rw-r--r--ACE/ace/Codecs.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/ACE/ace/Codecs.h b/ACE/ace/Codecs.h
index f8d68639753..6440e7dad8c 100644
--- a/ACE/ace/Codecs.h
+++ b/ACE/ace/Codecs.h
@@ -27,7 +27,6 @@
#include "ace/Basic_Types.h"
#include "ace/Global_Macros.h"
-
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
/**
@@ -42,7 +41,6 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
class ACE_Export ACE_Base64
{
public:
-
//@{
/**
@@ -82,12 +80,10 @@ public:
//@}
protected:
-
// Prevent default construction.
ACE_Base64 (void) {}
private:
-
// Preventing copying and assignment.
ACE_Base64 (ACE_Base64 const &);
ACE_Base64 & operator= (ACE_Base64 const &);
@@ -96,7 +92,6 @@ private:
static void init (void);
private:
-
/// Alphabet used for decoding i.e decoder_[alphabet_[i = 0..63]] = i
static ACE_Byte decoder_[];
@@ -106,7 +101,6 @@ private:
/// Boolean to denote whether initialization is complete
static bool init_;
-
};
ACE_END_VERSIONED_NAMESPACE_DECL