summaryrefslogtreecommitdiff
path: root/CIAO/DAnCE/LocalityManager/Scheduler/Deployment_Event.inl
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/DAnCE/LocalityManager/Scheduler/Deployment_Event.inl')
-rw-r--r--CIAO/DAnCE/LocalityManager/Scheduler/Deployment_Event.inl32
1 files changed, 32 insertions, 0 deletions
diff --git a/CIAO/DAnCE/LocalityManager/Scheduler/Deployment_Event.inl b/CIAO/DAnCE/LocalityManager/Scheduler/Deployment_Event.inl
new file mode 100644
index 00000000000..ba36246657b
--- /dev/null
+++ b/CIAO/DAnCE/LocalityManager/Scheduler/Deployment_Event.inl
@@ -0,0 +1,32 @@
+#ifndef DEPLOYMENT_EVENT_INL
+#define DEPLOYMENT_EVENT_INL
+
+namespace DAnCE
+{
+ ACE_INLINE
+ Event_Result::Event_Result (void)
+ : id_ (""),
+ exception_ (true)
+ {
+ }
+
+ ACE_INLINE
+ Event_Result::Event_Result (const std::string &id,
+ bool exception)
+ : id_ (id),
+ exception_ (exception)
+ {
+ }
+
+ ACE_INLINE
+ Event_Result::Event_Result (const std::string &id,
+ bool exception,
+ ::CORBA::Any *any)
+ : id_ (id),
+ exception_ (exception),
+ contents_ (any)
+ {
+ }
+}
+
+#endif