summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/LWFT/DDSFailure.cpp
blob: 300e279150391a66653a9f886b2143235f449d0a (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
// -*- C++ -*-

//=============================================================================
/**
 *  @file    DDSFailure.cpp
 *
 *  $Id$
 *
 * @author   Friedhelm Wolf (fwolf@dre.vanderbilt.edu)
 */
//=============================================================================

#include "DDSFailure.h"

#if defined (FLARE_USES_DDS)

DDSFailure::DDSFailure (const std::string & description)
  : description_ (description)
{
}

std::string
DDSFailure::description (void) const
{
  return description_;
}

#endif // FLARE_USES_DDS