mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-15 07:06:11 -04:00
17 lines
261 B
C++
17 lines
261 B
C++
#ifndef WORKSPACE_PLATFORM_H
|
|
#define WORKSPACE_PLATFORM_H
|
|
#include "internal/platform/implementation/platform.h"
|
|
|
|
namespace nearby
|
|
{
|
|
namespace linux
|
|
{
|
|
class Platform: public api::ImplementationPlatform
|
|
{
|
|
};
|
|
|
|
}
|
|
|
|
|
|
}
|
|
#endif //WORKSPACE_PLATFORM_H
|