File indexing completed on 2024-05-05 05:48:57

0001 /*
0002     SPDX-FileCopyrightText: 2007 Nicolas Ternisien <nicolas.ternisien@gmail.com>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "logModeAction.h"
0008 
0009 LogModeAction::LogModeAction(QObject *parent)
0010     : QObject(parent)
0011 {
0012 }
0013 
0014 LogModeAction::~LogModeAction()
0015 {
0016 }
0017 
0018 void LogModeAction::setCategory(LogModeAction::Category category)
0019 {
0020     mCategory = category;
0021 }
0022 
0023 LogModeAction::Category LogModeAction::category() const
0024 {
0025     return mCategory;
0026 }
0027 
0028 #include "moc_logModeAction.cpp"