16 lines
236 B
C++
16 lines
236 B
C++
#ifndef __FISHBONE_FILESYSTEM_H__
|
|
#define __FISHBONE_FILESYSTEM_H__
|
|
|
|
#include <fishbone/pre.h>
|
|
|
|
namespace fishbone {
|
|
bool exists(std::string path);
|
|
};
|
|
|
|
/* no includes */
|
|
|
|
namespace fishbone {
|
|
bool exists(std::string path);
|
|
};
|
|
|
|
#endif
|