BALL 1.5.0
Loading...
Searching...
No Matches
preferencesObject.h
Go to the documentation of this file.
1#ifndef BALL_CONCEPT_PREFERENCESOBJECT_H
2#define BALL_CONCEPT_PREFERENCESOBJECT_H
3
4#ifndef BALL_DATATYPE_STRING_H
6#endif
7
8#include <QtCore/QObject>
9
10namespace BALL
11{
26 : public virtual QObject
27 {
28 public:
29
32
34 virtual ~PreferencesObject() {};
35
37 virtual bool getValue(String&) const = 0;
38
40 virtual bool setValue(const String&) = 0;
41 };
42}
43
44#endif // BALL_CONCEPT_PREFERENCESOBJECT_H
virtual bool setValue(const String &)=0
Overload this in derived classes!
virtual bool getValue(String &) const =0
Overload this in derived classes!
#define BALL_EXPORT