summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/RTNodeApplication/RTServer_Impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/DAnCE/RTNodeApplication/RTServer_Impl.h')
-rw-r--r--TAO/CIAO/DAnCE/RTNodeApplication/RTServer_Impl.h78
1 files changed, 78 insertions, 0 deletions
diff --git a/TAO/CIAO/DAnCE/RTNodeApplication/RTServer_Impl.h b/TAO/CIAO/DAnCE/RTNodeApplication/RTServer_Impl.h
new file mode 100644
index 00000000000..75758c0dc36
--- /dev/null
+++ b/TAO/CIAO/DAnCE/RTNodeApplication/RTServer_Impl.h
@@ -0,0 +1,78 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file RTServer_Impl.h
+ *
+ * $Id$
+ *
+ * This file contains real-time extended implementations for the
+ * servants of
+ * Deployment::NodeApplication
+ *
+ * It will also contain the real-time extended version of
+ * CIAO::Session_Container.
+ *
+ * Currently, they are only used in the RTComponentServer
+ * implementation.
+ *
+ * @author Nanbor Wang <nanbor@cs.wustl.edu>
+ */
+//=============================================================================
+
+
+#ifndef CIAO_RTSERVER_IMPL_H
+#define CIAO_RTSERVER_IMPL_H
+#include /**/ "ace/pre.h"
+
+#include "ace/config-all.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+# pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#include "tao/RTCORBA/RTCORBA.h"
+#include "ciao/NodeApplication_Impl.h"
+//#include "ciao/Container_Impl.h"
+#include "ciao/Container_Base.h"
+
+namespace CIAO
+{
+ namespace RTServer
+ {
+ /**
+ * @class RTNodeApplication
+ *
+ * @brief Real-time extention servant implementation of
+ * Deployment::NodeApplication
+ *
+ * This class implements the Deployment::NodeApplication
+ * interface as defined by the DnC spcification. As the interface
+ * implies, this is actually part of the deployment interface and is
+ * used to manage the lifecycle of containers running on the server.
+ */
+ class RTNodeApplication_Impl
+ : public virtual CIAO::NodeApplication_Impl
+ {
+ public:
+ /// Constructor
+ RTNodeApplication_Impl (CORBA::ORB_ptr o,
+ RTCORBA::RTORB_ptr rto,
+ PortableServer::POA_ptr p);
+
+ /// Destructor
+ virtual ~RTNodeApplication_Impl (void);
+
+ protected:
+ RTCORBA::RTORB_var rtorb_;
+ };
+
+ }
+}
+
+#if defined (__ACE_INLINE__)
+# include "RTServer_Impl.inl"
+#endif /* __ACE_INLINE__ */
+
+#include /**/ "ace/post.h"
+#endif /* CIAO_RTSERVER_IMPL_H */