comparison extern/vera/src/plugins/RootDirectory.h @ 548:a7c0eb100760

CMake: import vera++ 1.3.0, closes #729
author David Demelier <markand@malikania.fr>
date Wed, 22 Nov 2017 20:10:03 +0100
parents
children
comparison
equal deleted inserted replaced
547:a95954e53589 548:a7c0eb100760
1 //
2 // Copyright (C) 2006-2007 Maciej Sobczak
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 //
7
8 #ifndef ROOTDIRECTORY_H_INCLUDED
9 #define ROOTDIRECTORY_H_INCLUDED
10
11 #include <string>
12
13
14 namespace Vera
15 {
16 namespace Plugins
17 {
18
19
20 class RootDirectory
21 {
22 public:
23 typedef std::string DirectoryName;
24
25 static void setRootDirectory(const DirectoryName & name);
26
27 static DirectoryName getRootDirectory();
28 };
29
30 } // namespace Plugins
31
32 } // namespace Vera
33
34 #endif // ROOTDIRECTORY_H_INCLUDED