rcpp_framework/platform/linux/platform_linux.h

15 lines
198 B
C
Raw Normal View History

2021-11-09 17:47:51 +01:00
#ifndef PLATFORM_LINUX_H
#define PLATFORM_LINUX_H
#include "core/os/platform.h"
class PlatformLinux : public Platform {
public:
PlatformLinux();
virtual ~PlatformLinux();
protected:
};
#endif