summaryrefslogtreecommitdiff
path: root/TAO/tao/DynUnion_i_T.h
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-20 02:34:57 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-10-20 02:34:57 +0000
commit5c1001ce4f585836e1f83c28d1df89aee42fb743 (patch)
tree5967e9ca7d44ed1d2823be9746817ebb8e025f5d /TAO/tao/DynUnion_i_T.h
parent2ae14b2b85ad813a269e8a5529aa76cf984fa8a5 (diff)
downloadATCD-5c1001ce4f585836e1f83c28d1df89aee42fb743.tar.gz
changed include protection from #if !defined to ifndef, and added #pragma once, if possible
Diffstat (limited to 'TAO/tao/DynUnion_i_T.h')
-rw-r--r--TAO/tao/DynUnion_i_T.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/tao/DynUnion_i_T.h b/TAO/tao/DynUnion_i_T.h
index 421da84d973..5d6cc452e52 100644
--- a/TAO/tao/DynUnion_i_T.h
+++ b/TAO/tao/DynUnion_i_T.h
@@ -27,7 +27,7 @@ class DU_Extractor_base
// Base class of template class below
//
public:
- virtual
+ virtual
CORBA::Boolean check_match (const CORBA_Any& inside_any,
const CORBA_Any& outside_any) = 0;
};
@@ -39,19 +39,19 @@ class DU_Extractor : public DU_Extractor_base
// DU_Extractor
//
// = DESCRIPTION
- // Template class functor to compare Anys in TAO_DynUnion_i
+ // Template class functor to compare Anys in TAO_DynUnion_i
// constructor with an Any arg and member function from_any().
- // Some compilers won't accept these eclarations inside
+ // Some compilers won't accept these eclarations inside
// TAO_DynUnion_i or even at global scope in the same file.
//
public:
CORBA::Boolean check_match (const CORBA_Any& inside_any,
const CORBA_Any& outside_any);
private:
- Type arg_index_;
+ Type arg_index_;
Type member_index_;
};
-
+
#if defined (ACE_TEMPLATES_REQUIRE_SOURCE)
#include "tao/DynUnion_i_T.cpp"
// On Win32 platforms, this code will be included as template source