Don't keep compiling/run if something failed.
[kdevelopdvcssupport.git] / plugins / teamwork / loglevel.h
blob8e4dc51be18a09c6218cc381c7f1c09f9bc9fb00
1 /***************************************************************************
2 Copyright 2006 David Nolden <david.nolden.kdevelop@art-master.de>
3 ***************************************************************************/
5 /***************************************************************************
6 * *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
11 * *
12 ***************************************************************************/
13 #ifndef LOGLEVEL_H
14 #define LOGLEVEL_H
16 #include <QIcon>
17 enum LogLevel {
18 Info = 1,
19 Warning = 2,
20 Error = 4,
21 Debug = 8
24 QIcon iconFromLevel( LogLevel lv );
26 #endif