2011-11-01 19:45:31 +04:00
|
|
|
/*
|
|
|
|
* Copyright 2011, Rene Gollent, rene@gollent.com.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef TEAM_UI_SETTINGS_FACTORY_H
|
|
|
|
#define TEAM_UI_SETTINGS_FACTORY_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
|
|
|
|
class BMessage;
|
2012-07-24 02:28:16 +04:00
|
|
|
class TeamUiSettings;
|
2011-11-01 19:45:31 +04:00
|
|
|
|
2012-07-24 02:28:16 +04:00
|
|
|
class TeamUiSettingsFactory {
|
2011-11-01 19:45:31 +04:00
|
|
|
public:
|
2016-05-22 22:40:46 +03:00
|
|
|
virtual ~TeamUiSettingsFactory();
|
|
|
|
|
|
|
|
virtual status_t Create(const BMessage& archive,
|
|
|
|
TeamUiSettings*& settings) const = 0;
|
2011-11-01 19:45:31 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TEAM_UI_SETTINGS_FACTORY_H
|