summaryrefslogtreecommitdiff
path: root/CIAO/ciao/FTComponentServer/CommonIDL/ReplicatedApplication.idl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/ciao/FTComponentServer/CommonIDL/ReplicatedApplication.idl')
-rw-r--r--CIAO/ciao/FTComponentServer/CommonIDL/ReplicatedApplication.idl28
1 files changed, 28 insertions, 0 deletions
diff --git a/CIAO/ciao/FTComponentServer/CommonIDL/ReplicatedApplication.idl b/CIAO/ciao/FTComponentServer/CommonIDL/ReplicatedApplication.idl
new file mode 100644
index 00000000000..6df83655e66
--- /dev/null
+++ b/CIAO/ciao/FTComponentServer/CommonIDL/ReplicatedApplication.idl
@@ -0,0 +1,28 @@
+// -*- IDL -*-
+
+//=============================================================================
+/**
+ * @file ReplicatedApplication.idl
+ *
+ * $Id$
+ *
+ * @author Friedhelm Wolf (fwolf@dre.vanderbilt.edu)
+ */
+//=============================================================================
+
+#ifndef _REPLICATED_APPLICATION_IDL_
+#define _REPLICATED_APPLICATION_IDL_
+
+interface ReplicatedApplication
+{
+ /// setter method for the interal state
+ /// @param state_value represents the internal state encapsulated
+ /// into an any value
+ void set_state (in any state_value);
+
+ /// getter method the the internal state
+ /// remark: it's not clear if this is necessary
+ any get_state ();
+};
+
+#endif /* _REPLICATED_APPLICATION_IDL_ */