summaryrefslogtreecommitdiffstats
path: root/languages/ruby/rubyconfigwidget.h
blob: a4efa6f9abbcac231cebeb36a436a886a239501d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27

#ifndef RUBYCONFIGWIDGET_H
#define RUBYCONFIGWIDGET_H

#include "rubyconfigwidgetbase.h"

class QDomDocument;

class RubyConfigWidget : public RubyConfigWidgetBase
{
  Q_OBJECT
public:
  RubyConfigWidget(QDomDocument &projectDom, QWidget* parent = 0, const char* name = 0);

public slots:
  void accept();

protected:

protected slots:

private:
  QDomDocument &dom;
};

#endif