File indexing completed on 2024-04-21 03:41:50

0001 /*
0002     SPDX-FileCopyrightText: 2008 Danilo Balzaque <danilo.balzaque@ltia.fc.unesp.br>
0003     SPDX-FileCopyrightText: 2008 Tadeu Araujo <tadeu.araujo@ltia.fc.unesp.br>
0004     SPDX-FileCopyrightText: 2008 Tiago Porangaba <tiago.porangaba@ltia.fc.unesp.br>
0005 
0006     SPDX-License-Identifier: GPL-2.0-or-later
0007 */
0008 
0009 #ifndef TASKCOLORS_H
0010 #define TASKCOLORS_H
0011 
0012 #include "ui_taskcolorsbase.h"
0013 
0014 class TaskColors : public QWidget, public Ui::TaskColorsBase
0015 {
0016 public:
0017     explicit TaskColors(QWidget * parent) : QWidget(parent) {
0018         setupUi(this);
0019     }
0020 };
0021 
0022 #endif