rcpp_framework/core/os/platform.h

22 lines
294 B
C
Raw Normal View History

2021-11-09 17:47:51 +01:00
#ifndef PLATFORM_H
#define PLATFORM_H
#include "arg_parser.h"
class Platform {
public:
virtual void arg_setup(int argc, char **argv, char **envp);
static Platform *get_singleton();
Platform();
virtual ~Platform();
ArgParser arg_parser;
protected:
static Platform *_self;
};
#endif