comparison extern/vera/src/plugins/Rules.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 RULES_H_INCLUDED
9 #define RULES_H_INCLUDED
10
11 #include <string>
12
13
14 namespace Vera
15 {
16 namespace Plugins
17 {
18
19 class Rules
20 {
21 public:
22 typedef std::string RuleName;
23
24 static void executeRule(const RuleName & name);
25
26 static RuleName getCurrentRule();
27 };
28
29 } // namespace Plugins
30
31 } // namespace Vera
32
33 #endif // RULES_H_INCLUDED