fw4spl
File.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_FILE_HPP__
8 #define __FWTEST_FILE_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 File
19 {
20 public:
21  FWTEST_API static bool contentEquals(const ::boost::filesystem::path &lfile,
22  const ::boost::filesystem::path &rfile);
23 
24 };
25 
26 } // namespace fwTest
27 
28 #endif // __FWTEST_FILE_HPP__
Definition: Data.hpp:15