// Copyright (c) Tribufu. All Rights Reserved. #pragma once #include #include #ifdef MINTAKA_CPP namespace mintaka { class File { private: std::string path; public: File(std::string path) { this->path = path; } ~File() { } }; } #endif