12 lines
220 B
C++
12 lines
220 B
C++
|
|
#ifndef ANAGLYM_H
|
|
#define ANAGLYM_H
|
|
|
|
#include <string>
|
|
|
|
#define FILENAME_SAFE_CHARS "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_-"
|
|
|
|
std::string locateResource(const std::string & shortname);
|
|
|
|
#endif
|