summary refs log tree commit diff stats
path: root/src/runtime.h
blob: a0e3a2c1b42e66c261a1ddad37cafd7f87b10b4f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef RUNTIME_H_A8DA6E1E
#define RUNTIME_H_A8DA6E1E

#include <string>
#include <string_view>

class Runtime {
public:

  static std::string getResourcePath(std::string_view filename);
};

#endif /* end of include guard: RUNTIME_H_A8DA6E1E */