mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
12 lines
192 B
C++
12 lines
192 B
C++
#ifndef __platform_factory__
|
|
#define __platform_factory__
|
|
|
|
#include <pbd/platform.h>
|
|
|
|
class PlatformFactory {
|
|
public:
|
|
static Platform* create_platform ();
|
|
};
|
|
|
|
|
|
#endif // __platform_factory__
|