mirror of
https://review.haiku-os.org/haiku
synced 2025-02-06 13:58:21 +01:00
36 lines
680 B
C
36 lines
680 B
C
|
/*
|
||
|
* Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef SETTINGS_DESCRIPTION_H
|
||
|
#define SETTINGS_DESCRIPTION_H
|
||
|
|
||
|
|
||
|
#include <ObjectList.h>
|
||
|
#include <Referenceable.h>
|
||
|
|
||
|
|
||
|
class Setting;
|
||
|
|
||
|
|
||
|
class SettingsDescription : public BReferenceable {
|
||
|
public:
|
||
|
SettingsDescription();
|
||
|
virtual ~SettingsDescription();
|
||
|
|
||
|
int32 CountSettings() const;
|
||
|
Setting* SettingAt(int32 index) const;
|
||
|
Setting* SettingByID(const char* id) const;
|
||
|
|
||
|
bool AddSetting(Setting* setting);
|
||
|
|
||
|
private:
|
||
|
typedef BObjectList<Setting> SettingsList;
|
||
|
|
||
|
private:
|
||
|
SettingsList fSettings;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // SETTINGS_DESCRIPTION_H
|