mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 00:56:33 +01:00
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__
|