Skip to content

Commit f7523ba

Browse files
authored
add verbosities
add verbosity constants to Tool
1 parent a059b36 commit f7523ba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Tool/Tool.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ class Tool{
3838

3939
private:
4040
std::string m_tool_name;
41-
41+
int get_ok;
42+
static const int v_error=0;
43+
static const int v_warning=1;
44+
static const int v_message=2;
45+
static const int v_debug=3;
4246

4347

4448

0 commit comments

Comments
 (0)