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

24 lines
317 B
C++

#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 = 0);
private slots:
void RunQuery();
private:
Ui::Console ui_;
Application* app_;
};
#endif // CONSOLE_H