summaryrefslogtreecommitdiff
path: root/utils/rbutilqt/base/progressloglevels.h
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2021-12-26 11:05:25 +0100
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2021-12-26 11:05:25 +0100
commit35bc4590ae75d7178061205d8e937bc4f8b5b09e (patch)
tree91152ba23d96a739d13938ed4463d2854a4a900f /utils/rbutilqt/base/progressloglevels.h
parent01e245417e24fe6c9957b35850db6b1473f66e98 (diff)
downloadrockbox-35bc4590ae75d7178061205d8e937bc4f8b5b09e.tar.gz
rockbox-35bc4590ae75d7178061205d8e937bc4f8b5b09e.zip
rbutil: Remove ProgressLogger interface class.
Since we're using signals to connect to the Logger we don't need an interface class, and the only thing still used was the log level enum. Put those values in a dedicated header instead. Change-Id: Ic3aee14ba13b81e283b477d11b1c15a5c26ffeab
Diffstat (limited to 'utils/rbutilqt/base/progressloglevels.h')
-rw-r--r--utils/rbutilqt/base/progressloglevels.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/utils/rbutilqt/base/progressloglevels.h b/utils/rbutilqt/base/progressloglevels.h
new file mode 100644
index 0000000000..95d479ca29
--- /dev/null
+++ b/utils/rbutilqt/base/progressloglevels.h
@@ -0,0 +1,29 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Dominik Wenger
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21#ifndef PROGRESSLOGLEVELS_H
22#define PROGRESSLOGLEVELS_H
23
24enum {
25 LOGNOICON, LOGOK, LOGINFO, LOGWARNING, LOGERROR
26};
27
28#endif
29