mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
13 lines
171 B
C
13 lines
171 B
C
|
|
#include <gtkmm/textview.h>
|
||
|
|
|
||
|
|
#include "ardour_dialog.h"
|
||
|
|
|
||
|
|
class ConfigInfoDialog : public ArdourDialog
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
ConfigInfoDialog();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Gtk::TextView text;
|
||
|
|
};
|