summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/LWFT/DDSFailure.h
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/LWFT/DDSFailure.h')
-rw-r--r--TAO/orbsvcs/orbsvcs/LWFT/DDSFailure.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/TAO/orbsvcs/orbsvcs/LWFT/DDSFailure.h b/TAO/orbsvcs/orbsvcs/LWFT/DDSFailure.h
new file mode 100644
index 00000000000..b7ff2b497dc
--- /dev/null
+++ b/TAO/orbsvcs/orbsvcs/LWFT/DDSFailure.h
@@ -0,0 +1,36 @@
+// -*- C++ -*-
+
+//=============================================================================
+/**
+ * @file DDSFailure.h
+ *
+ * $Id$
+ *
+ * @author Friedhelm Wolf (fwolf@dre.vanderbilt.edu)
+ */
+//=============================================================================
+
+#ifndef _DDS_FAILURE_H_
+#define _DDS_FAILURE_H_
+
+#if defined (FLARE_USES_DDS)
+
+#include <string>
+#include "ssa_export.h"
+
+class SSA_Export DDSFailure
+{
+ public:
+ DDSFailure (const std::string & description);
+
+ /// Getter method.
+ std::string description (void) const;
+
+ private:
+ /// Description of what DDS problem occurred.
+ std::string description_;
+};
+
+#endif // FLARE_USES_DDS
+
+#endif /* _DDS_FAILURE_H_ */