aboutsummaryrefslogtreecommitdiff
path: root/src/unstable/settingsdrivertaf.h
blob: d7d751b30500b732c47d46083daefe4ad2917b95 (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
#ifndef BU_SETTINGS_DRIVER_TAF_H
#define BU_SETTINGS_DRIVER_TAF_H

#include "bu/settingsdriver.h"

namespace Bu
{
	class TafGroup;

	class SettingsDriverTaf : public SettingsDriver
	{
	public:
		SettingsDriverTaf();
		virtual ~SettingsDriverTaf();

	protected:
		virtual void init( const Bu::UtfString &sCompany, const Bu::UtfString &sProduct );

	private:
		class Bu::TafGroup *pRoot;
	};
};

#endif