mirror of
https://github.com/Karaka-Management/cOMS.git
synced 2026-01-11 11:18:40 +00:00
18 lines
325 B
C++
18 lines
325 B
C++
/**
|
|
* Jingga
|
|
*
|
|
* @copyright Jingga
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
#ifndef TOS_SYSTEM_FILE_UTILS_C
|
|
#define TOS_SYSTEM_FILE_UTILS_C
|
|
|
|
#if _WIN32
|
|
#include "../platform/win32/FileUtils.cpp"
|
|
#elif __linux__
|
|
#include "../platform/linux/FileUtils.cpp"
|
|
#endif
|
|
|
|
#endif |