summaryrefslogtreecommitdiff
path: root/CIAO/examples/Null_Component/Null_Component.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/examples/Null_Component/Null_Component.idl')
-rw-r--r--CIAO/examples/Null_Component/Null_Component.idl38
1 files changed, 38 insertions, 0 deletions
diff --git a/CIAO/examples/Null_Component/Null_Component.idl b/CIAO/examples/Null_Component/Null_Component.idl
new file mode 100644
index 00000000000..26df429a13b
--- /dev/null
+++ b/CIAO/examples/Null_Component/Null_Component.idl
@@ -0,0 +1,38 @@
+/**
+ * @file Null_Component.idl
+ *
+ * @author Abdul Sowayan <abdullah.sowayan@lmco.com>
+ *
+ * $Id$
+ */
+
+#ifndef NULL_COMPONENT_IDL
+#define NULL_COMPONENT_IDL
+
+#include <Components.idl>
+#include "Null_Interface.idl"
+
+
+/**
+ * @class Null_Component
+ *
+ * This component is intentionally left blank. Its purpose
+ * is to measure the footprint of a component in CIAO.
+ */
+component Null_Component
+{
+ provides Null_Interface null_facet;
+};
+
+/**
+ * @class Null_Component_Home
+ *
+ * @brief home for Null_Component
+ */
+home Null_Component_Home manages Null_Component
+{
+};
+
+#endif /* NULL_COMPONENT_IDL */
+
+