mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 12:46:16 +00:00
13 lines
154 B
C
13 lines
154 B
C
|
#ifndef _FILEUTIL_H
|
||
|
#define _FILEUTIL_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
class File
|
||
|
{
|
||
|
public:
|
||
|
static bool Exists(const std::string &filename);
|
||
|
};
|
||
|
|
||
|
#endif
|