Clementine-audio-player-Mac.../src/ui/console.h

24 lines
323 B
C
Raw Normal View History

2012-09-26 18:36:47 +02:00
#ifndef CONSOLE_H
#define CONSOLE_H
#include <QDialog>
#include "ui_console.h"
class Application;
class Console : public QDialog {
Q_OBJECT
public:
Console(Application* app, QWidget* parent = nullptr);
2012-09-26 18:36:47 +02:00
private slots:
void RunQuery();
private:
Ui::Console ui_;
Application* app_;
};
#endif // CONSOLE_H