summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/LWFT/DDSFailure.h
blob: b7ff2b497dccaa349038209968015e27c8943aa3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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_ */