mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-27 16:25:36 +01: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
|