mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
15 lines
198 B
C
15 lines
198 B
C
|
#ifndef PLATFORM_LINUX_H
|
||
|
#define PLATFORM_LINUX_H
|
||
|
|
||
|
#include "core/os/platform.h"
|
||
|
|
||
|
class PlatformLinux : public Platform {
|
||
|
public:
|
||
|
PlatformLinux();
|
||
|
virtual ~PlatformLinux();
|
||
|
|
||
|
protected:
|
||
|
};
|
||
|
|
||
|
#endif
|