summaryrefslogtreecommitdiff
path: root/ACE/ace/Monitor_Control_Types.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/ace/Monitor_Control_Types.cpp')
-rw-r--r--ACE/ace/Monitor_Control_Types.cpp81
1 files changed, 81 insertions, 0 deletions
diff --git a/ACE/ace/Monitor_Control_Types.cpp b/ACE/ace/Monitor_Control_Types.cpp
new file mode 100644
index 00000000000..a1bf3399c2b
--- /dev/null
+++ b/ACE/ace/Monitor_Control_Types.cpp
@@ -0,0 +1,81 @@
+// $Id$
+
+#include "ace/Monitor_Control_Types.h"
+
+#if defined (ACE_HAS_MONITOR_FRAMEWORK) && (ACE_HAS_MONITOR_FRAMEWORK == 1)
+
+#include "ace/Monitor_Control_Action.h"
+
+ACE_BEGIN_VERSIONED_NAMESPACE_DECL
+
+namespace ACE
+{
+ namespace Monitor_Control
+ {
+ Monitor_Control_Types::Data::Data (
+ Monitor_Control_Types::Information_Type type)
+ : timestamp_ (ACE_Time_Value::zero)
+ , value_ (0.0)
+ , type_ (type)
+ , index_ (0UL)
+ , minimum_set_ (false)
+ , minimum_ (0.0)
+ , maximum_ (0.0)
+ , sum_ (0.0)
+ , sum_of_squares_ (0.0)
+ , last_ (0.0)
+ {}
+
+ //=============================================================
+
+ Monitor_Control_Types::Constraint::Constraint (void)
+ : control_action (0)
+ {}
+
+ Monitor_Control_Types::Constraint::Constraint (const Constraint& rhs)
+ : expr (rhs.expr),
+ control_action (rhs.control_action)
+ {
+ if (control_action != 0)
+ {
+ control_action->add_ref ();
+ }
+ }
+
+ Monitor_Control_Types::Constraint::~Constraint (void)
+ {
+ if (this->control_action != 0)
+ {
+ this->control_action->remove_ref ();
+ }
+ }
+
+ Monitor_Control_Types::Constraint&
+ Monitor_Control_Types::Constraint::operator= (const Constraint& rhs)
+ {
+ if (this != &rhs)
+ {
+ if (this->control_action != 0)
+ {
+ this->control_action->remove_ref ();
+ }
+
+ this->expr = rhs.expr;
+ this->control_action = rhs.control_action;
+
+ if (this->control_action != 0)
+ {
+ this->control_action->add_ref ();
+ }
+ }
+
+ return *this;
+ }
+ }
+}
+
+ACE_END_VERSIONED_NAMESPACE_DECL
+
+#endif /* ACE_HAS_MONITOR_FRAMEWORK==1 */
+
+