fw4spl
core/fwAtoms/src/fwAtoms/Base.cpp
1 /* ***** BEGIN LICENSE BLOCK *****
2  * FW4SPL - Copyright (C) IRCAD, 2009-2015.
3  * Distributed under the terms of the GNU Lesser General Public License (LGPL) as
4  * published by the Free Software Foundation.
5  * ****** END LICENSE BLOCK ****** */
6 
7 #include "fwAtoms/Exception.hpp"
8 #include "fwAtoms/Base.hpp"
9 
10 
11 namespace fwAtoms
12 {
13 
14 const std::string Base::s_VERSION = "1";
15 
16 std::string Base::getString() const
17 {
18  FW_RAISE_EXCEPTION( fwAtoms::Exception("No string conversion available.") );
19 }
20 
21 }
22 
fwAtoms contains basic objects to represent any other kind of object
static FWATOMS_API const std::string s_VERSION
Defines fwAtoms version.
virtual FWATOMS_API std::string getString() const
Return the string representation of a value.