fw4spl
Data.hpp
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 #ifndef __FWTEST_DATA_HPP__
8 #define __FWTEST_DATA_HPP__
9 
10 #include "fwTest/Exception.hpp"
11 #include "fwTest/config.hpp"
12 
13 #include <boost/filesystem/path.hpp>
14 
15 namespace fwTest
16 {
17 
18 class FWTEST_CLASS_API Data
19 {
20 public:
21  FWTEST_API static boost::filesystem::path dir();
22 
23 
24  static const std::string s_TEST_DATA_DIR_ENV_VAR;
25 };
26 
27 } // namespace fwTest
28 
29 #endif // __FWTEST_DATA_HPP__
Definition: Data.hpp:15