summaryrefslogtreecommitdiff
path: root/ACE/ace/Monitor_Admin_Manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Monitor_Admin_Manager.h')
-rw-r--r--ACE/ace/Monitor_Admin_Manager.h70
1 files changed, 70 insertions, 0 deletions
diff --git a/ACE/ace/Monitor_Admin_Manager.h b/ACE/ace/Monitor_Admin_Manager.h
new file mode 100644
index 00000000000..1726e06fdf9
--- /dev/null
+++ b/ACE/ace/Monitor_Admin_Manager.h
@@ -0,0 +1,70 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file Monitor_Admin_Manager.h
+ *
+ * $Id$
+ *
+ * @author Jeff Parsons <j.parsons@vanderbilt.edu>
+ */
+//=============================================================================
+
+#ifndef MONITOR_ADMIN_MANAGER_H
+#define MONITOR_ADMIN_MANAGER_H
+
+#include /**/ "ace/pre.h"
+
+#include "ace/Service_Object.h"
+
+#if !defined (ACE_LACKS_PRAGMA_ONCE)
+#pragma once
+#endif /* ACE_LACKS_PRAGMA_ONCE */
+
+#if defined (ACE_HAS_MONITOR_FRAMEWORK) && (ACE_HAS_MONITOR_FRAMEWORK == 1)
+
+#include "ace/Monitor_Admin.h"
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace ACE
+{
+ namespace Monitor_Control
+ {
+ /**
+ * @class Monitor_Admin_Manager
+ *
+ * @brief Repsonsible for creating and destroying the global
+ * (per process) instance of the Admin class.
+ *
+ * Monitor_Admin_Manager will be instantiated as an ACE_Dynamic_Service
+ * singleton, and implements the interface of ACE_Service_Object.
+ */
+ class ACE_Export Monitor_Admin_Manager : public ACE_Service_Object
+ {
+ public:
+ /// Access the admin instance.
+ ACE::Monitor_Control::Monitor_Admin& admin (void);
+
+ /// Used to force initialization of the MC service.
+ static int Initializer (void);
+
+ private:
+ Monitor_Admin admin_;
+ };
+ }
+}
+
+/// For the ACE_FACTORY_DEFINE macro in the .cpp file.
+typedef ACE::Monitor_Control::Monitor_Admin_Manager MC_ADMINMANAGER;
+
+ACE_END_VERSIONED_NAMESPACE_DECL
+
+ACE_STATIC_SVC_DECLARE (MC_ADMINMANAGER)
+ACE_FACTORY_DECLARE (ACE, MC_ADMINMANAGER)
+
+#endif /* ACE_HAS_MONITOR_FRAMEWORK==1 */
+
+#include /**/ "ace/post.h"
+
+#endif // MONITOR_ADMIN_MANAGER_H