mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 10:02:30 +00:00
30 lines
816 B
C++
30 lines
816 B
C++
#ifndef BC_FILE_HPP
|
|
#define BC_FILE_HPP
|
|
|
|
#include "bc/file/Defines.hpp"
|
|
#include "bc/file/Error.hpp"
|
|
|
|
#include "bc/file/SimpleGlob.hpp"
|
|
|
|
#include "bc/file/Close.hpp"
|
|
#include "bc/file/Copy.hpp"
|
|
#include "bc/file/CreateDirectory.hpp"
|
|
#include "bc/file/Delete.hpp"
|
|
#include "bc/file/Exists.hpp"
|
|
#include "bc/file/Flush.hpp"
|
|
#include "bc/file/GetFileInfo.hpp"
|
|
#include "bc/file/GetPos.hpp"
|
|
#include "bc/file/GetWorkingDirectory.hpp"
|
|
#include "bc/file/IsAbsolutePath.hpp"
|
|
#include "bc/file/MakeAbsolutePath.hpp"
|
|
#include "bc/file/Move.hpp"
|
|
#include "bc/file/Open.hpp"
|
|
#include "bc/file/ProcessDirFast.hpp"
|
|
#include "bc/file/Read.hpp"
|
|
#include "bc/file/RemoveDirectory.hpp"
|
|
#include "bc/file/SetAttributes.hpp"
|
|
#include "bc/file/SetPos.hpp"
|
|
#include "bc/file/SetWorkingDirectory.hpp"
|
|
#include "bc/file/Write.hpp"
|
|
|
|
#endif
|