summaryrefslogtreecommitdiff
path: root/CIAO/tests/IDL3
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-08-07 09:01:11 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-08-07 09:01:11 +0000
commit86ce60db1b9368b8e390914bc6c65f7828f165bb (patch)
tree0c97496792aecd328c5a3236f73a5f30b9ff0391 /CIAO/tests/IDL3
parent6a5a56e644167f75ab15a1af3846222a026b33d3 (diff)
downloadATCD-86ce60db1b9368b8e390914bc6c65f7828f165bb.tar.gz
ChangeLogTag: Tue Aug 7 08:57:46 UTC 2007 Jeff Parsons <j.parsons@vanderbilt.edu>
Diffstat (limited to 'CIAO/tests/IDL3')
-rw-r--r--CIAO/tests/IDL3/ImpliedIDL/All/include.idl5
-rw-r--r--CIAO/tests/IDL3/ImpliedIDL/All/pass_through.idl5
-rw-r--r--CIAO/tests/IDL3/ImpliedIDL/All/raw_include.idl5
3 files changed, 15 insertions, 0 deletions
diff --git a/CIAO/tests/IDL3/ImpliedIDL/All/include.idl b/CIAO/tests/IDL3/ImpliedIDL/All/include.idl
index 6a08a6c03d6..848d4128b6e 100644
--- a/CIAO/tests/IDL3/ImpliedIDL/All/include.idl
+++ b/CIAO/tests/IDL3/ImpliedIDL/All/include.idl
@@ -6,6 +6,9 @@
* Tests tool's regeneration of IDL2 constructs, which
* should be basically unchanged.
*/
+
+#ifndef INCLUDE_IDL
+#define INCLUDE_IDL
module pre_mod
{
@@ -28,3 +31,5 @@ module pre_mod
const pre_mod::which which_one = pre_mod::ONE;
+#endif /* INCLUDE_IDL */
+
diff --git a/CIAO/tests/IDL3/ImpliedIDL/All/pass_through.idl b/CIAO/tests/IDL3/ImpliedIDL/All/pass_through.idl
index 1ba927c59ac..7adfb514b57 100644
--- a/CIAO/tests/IDL3/ImpliedIDL/All/pass_through.idl
+++ b/CIAO/tests/IDL3/ImpliedIDL/All/pass_through.idl
@@ -6,6 +6,9 @@
* Tests tool's regeneration of IDL2 constructs, which
* should be basically unchanged.
*/
+
+#ifndef PASS_THROUGH_IDL
+#define PASS_THROUGH_IDL
#pragma prefix "glooby"
@@ -87,3 +90,5 @@ module mod
};
};
+#endif /* PASS_THROUGH_IDL */
+
diff --git a/CIAO/tests/IDL3/ImpliedIDL/All/raw_include.idl b/CIAO/tests/IDL3/ImpliedIDL/All/raw_include.idl
index 51cff222b4b..b3aed65f2df 100644
--- a/CIAO/tests/IDL3/ImpliedIDL/All/raw_include.idl
+++ b/CIAO/tests/IDL3/ImpliedIDL/All/raw_include.idl
@@ -8,6 +8,9 @@
* an IDL2 file corresponding to the IDL3 file this one is
* included in unchanged, without the '_IDL2' suffix.
*/
+
+#ifndef RAW_INCLUDE_IDL
+#define RAW_INCLUDE_IDL
module carnsarn
{
@@ -20,3 +23,5 @@ module carnsarn
wstring<3> trinity;
};
};
+
+#endif /* RAW_INCLUDE_IDL */