d09f6b3016
git-svn-id: svn://localhost/trunk/ardour2@4 d708f5d6-7413-0410-9779-e7cbd77b26cf
13 lines
192 B
C++
13 lines
192 B
C++
#ifndef __platform_factory__
|
|
#define __platform_factory__
|
|
|
|
#include <pbd/platform.h>
|
|
|
|
class PlatformFactory {
|
|
public:
|
|
static Platform* create_platform ();
|
|
};
|
|
|
|
|
|
#endif // __platform_factory__
|