summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2012-03-23 22:02:04 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2012-03-23 22:02:04 +0000
commitdf56289a478de9c02262d3fc4c0d4474098d501b (patch)
tree1622c4b2e70431c883e438a819ffca78e6d054bd
parent29010fc011ba829f9549cf0ecbac08948c1e8c30 (diff)
downloadATCD-df56289a478de9c02262d3fc4c0d4474098d501b.tar.gz
Fri Mar 23 21:58:41 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/IDL_Test/Cornucopia/Cornucopia.doxygen: Parse more files * tests/IDL_Test/Cornucopia/Cornucopia.idl: Added some documentation to be copied by doxygen to the executor header
-rw-r--r--CIAO/ChangeLog9
-rw-r--r--CIAO/tests/IDL_Test/Cornucopia/Cornucopia.doxygen2
-rw-r--r--CIAO/tests/IDL_Test/Cornucopia/Cornucopia.idl5
3 files changed, 15 insertions, 1 deletions
diff --git a/CIAO/ChangeLog b/CIAO/ChangeLog
index f67e642a360..06e2691b0f2 100644
--- a/CIAO/ChangeLog
+++ b/CIAO/ChangeLog
@@ -1,3 +1,12 @@
+Fri Mar 23 21:58:41 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * tests/IDL_Test/Cornucopia/Cornucopia.doxygen:
+ Parse more files
+
+ * tests/IDL_Test/Cornucopia/Cornucopia.idl:
+ Added some documentation to be copied by doxygen to the
+ executor header
+
Fri Mar 23 20:34:35 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* tests/Bug_4009_Regression/Bug_4009_Bar.idl:
diff --git a/CIAO/tests/IDL_Test/Cornucopia/Cornucopia.doxygen b/CIAO/tests/IDL_Test/Cornucopia/Cornucopia.doxygen
index 909d8709866..25f4086e7c8 100644
--- a/CIAO/tests/IDL_Test/Cornucopia/Cornucopia.doxygen
+++ b/CIAO/tests/IDL_Test/Cornucopia/Cornucopia.doxygen
@@ -50,7 +50,7 @@ WARN_FORMAT = "$file:$line: $text"
#---------------------------------------------------------------------------
INPUT = .
-FILE_PATTERNS = Cornucopia_exec.h Cornucopia_exec.cpp
+FILE_PATTERNS = Cornucopia_exec.h Cornucopia_exec.cpp Cornucopia.idl CornucopiaE.idl
RECURSIVE = YES
EXCLUDE =
EXCLUDE_PATTERNS =
diff --git a/CIAO/tests/IDL_Test/Cornucopia/Cornucopia.idl b/CIAO/tests/IDL_Test/Cornucopia/Cornucopia.idl
index 4f9de05a6f9..c5f2bd86250 100644
--- a/CIAO/tests/IDL_Test/Cornucopia/Cornucopia.idl
+++ b/CIAO/tests/IDL_Test/Cornucopia/Cornucopia.idl
@@ -12,9 +12,12 @@
module Supported
{
+ /// The IfacePawPaw interface
interface IfacePawPaw
{
+ /// Our paw_paw_op stuff
long paw_paw_op (out short spew);
+ /// A special boolean attribute
attribute boolean inbred;
};
@@ -26,6 +29,7 @@ module Supported
interface IfaceDad : IfacePawPaw
{
+ /// Our message attribute
attribute string msg;
long long get_big_int (in IfacePawPaw genealogy);
};
@@ -100,6 +104,7 @@ module T2
component Base
{
port MyPort usage;
+ /// My topic
attribute string topic_name;
};