source: psi/trunk/src/options/opt_advanced.h

Last change on this file was 2, checked in by dmik, 19 years ago

Imported original Psi 0.10 sources from Affinix

File size: 362 bytes
Line 
1#ifndef OPT_ADVANCED_H
2#define OPT_ADVANCED_H
3
4#include "optionstab.h"
5
6class QWidget;
7struct Options;
8
9class OptionsTabAdvanced : public OptionsTab
10{
11 Q_OBJECT
12public:
13 OptionsTabAdvanced(QObject *parent);
14 ~OptionsTabAdvanced();
15
16 QWidget *widget();
17 void applyOptions(Options *opt);
18 void restoreOptions(const Options *opt);
19
20private:
21 QWidget *w;
22};
23
24#endif
Note: See TracBrowser for help on using the repository browser.