summaryrefslogtreecommitdiff
path: root/TAO/tao/Codeset
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2015-11-06 17:05:38 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2015-11-06 17:05:38 +0100
commitc293f345453b4d7c23516e107d844f63faa4d9c5 (patch)
treed0c166ec1ddf203f33c53e034944f179ac570039 /TAO/tao/Codeset
parentf39120a08256e8b0f9bd4207b9387e82a860c4fd (diff)
downloadATCD-c293f345453b4d7c23516e107d844f63faa4d9c5.tar.gz
Layout changes
* TAO/orbsvcs/Notify_Service/Notify_Service.cpp: * TAO/tao/Codeset/UTF16_BOM_Factory.cpp: * TAO/tao/Codeset/UTF16_BOM_Factory.h: * TAO/tao/Codeset/UTF16_BOM_Translator.h:
Diffstat (limited to 'TAO/tao/Codeset')
-rw-r--r--TAO/tao/Codeset/UTF16_BOM_Factory.cpp3
-rw-r--r--TAO/tao/Codeset/UTF16_BOM_Factory.h3
-rw-r--r--TAO/tao/Codeset/UTF16_BOM_Translator.h2
3 files changed, 3 insertions, 5 deletions
diff --git a/TAO/tao/Codeset/UTF16_BOM_Factory.cpp b/TAO/tao/Codeset/UTF16_BOM_Factory.cpp
index 4d5b0ce8248..e28f77b164f 100644
--- a/TAO/tao/Codeset/UTF16_BOM_Factory.cpp
+++ b/TAO/tao/Codeset/UTF16_BOM_Factory.cpp
@@ -10,7 +10,6 @@
*/
//=============================================================================
-
#include "tao/debug.h"
#include "tao/Codeset/UTF16_BOM_Factory.h"
#include "ace/OS_NS_strings.h"
@@ -28,8 +27,6 @@ ACE_STATIC_SVC_DEFINE (TAO_UTF16_BOM_Factory,
0)
ACE_FACTORY_DEFINE (TAO_Codeset, TAO_UTF16_BOM_Factory)
-
-
TAO_UTF16_BOM_Factory::TAO_UTF16_BOM_Factory ()
: translator_ (0)
, forceBE_ (false)
diff --git a/TAO/tao/Codeset/UTF16_BOM_Factory.h b/TAO/tao/Codeset/UTF16_BOM_Factory.h
index f3dc2d9e140..3d9e6e550a9 100644
--- a/TAO/tao/Codeset/UTF16_BOM_Factory.h
+++ b/TAO/tao/Codeset/UTF16_BOM_Factory.h
@@ -53,7 +53,8 @@ private:
private:
TAO_UTF16_BOM_Translator *translator_;
- bool forceBE_; // force big endian wchar, warray, & wstring
+ /// Force big endian wchar, warray, & wstring
+ bool forceBE_;
};
ACE_STATIC_SVC_DECLARE_EXPORT (TAO_Codeset, TAO_UTF16_BOM_Factory)
diff --git a/TAO/tao/Codeset/UTF16_BOM_Translator.h b/TAO/tao/Codeset/UTF16_BOM_Translator.h
index 8658e15a75c..20d9ac2ad1e 100644
--- a/TAO/tao/Codeset/UTF16_BOM_Translator.h
+++ b/TAO/tao/Codeset/UTF16_BOM_Translator.h
@@ -40,7 +40,7 @@ class TAO_Codeset_Export TAO_UTF16_BOM_Translator
: public ACE_WChar_Codeset_Translator
{
public:
- /// constructor
+ /// Constructor
/// @param forceBE: true forces all wchar, warray, and wstrings to big-endian byte order
TAO_UTF16_BOM_Translator (bool forceBE);