summaryrefslogtreecommitdiff
path: root/ACE/protocols/ace/RMCast/Simulator.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/protocols/ace/RMCast/Simulator.h')
-rw-r--r--ACE/protocols/ace/RMCast/Simulator.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/ACE/protocols/ace/RMCast/Simulator.h b/ACE/protocols/ace/RMCast/Simulator.h
new file mode 100644
index 00000000000..27b227f488b
--- /dev/null
+++ b/ACE/protocols/ace/RMCast/Simulator.h
@@ -0,0 +1,30 @@
+// file : ace/RMCast/Simulator.h
+// author : Boris Kolpackov <boris@kolpackov.net>
+// cvs-id : $Id$
+
+#ifndef ACE_RMCAST_SIMULATOR_H
+#define ACE_RMCAST_SIMULATOR_H
+
+#include "Stack.h"
+#include "Protocol.h"
+#include "Bits.h"
+
+namespace ACE_RMCast
+{
+ class Simulator : public Element
+ {
+ public:
+ Simulator ();
+
+ public:
+ virtual void
+ send (Message_ptr m);
+
+ private:
+ Message_ptr hold_;
+ Mutex mutex_;
+ };
+}
+
+
+#endif // ACE_RMCAST_SIMULATOR_H