.. _program_listing_file_include_MainObjects_tempDBObject_tempDB.hpp: Program Listing for File tempDB.hpp =================================== |exhale_lsh| :ref:`Return to documentation for file ` (``include/MainObjects/tempDBObject/tempDB.hpp``) .. |exhale_lsh| unicode:: U+021B0 .. UPWARDS ARROW WITH TIP LEFTWARDS .. code-block:: cpp #pragma once #include namespace fs = std::filesystem; #include "PDJE_EXPORT_SETTER.hpp" #include "dbRoot.hpp" class PDJE_API tempDB { private: std::optional tempROOT; public: std::string ERR = ""; bool Open(const fs::path &projectRoot); bool BuildProject(trackdata &td, std::vector &mds); litedb & GetBuildedProject() { return tempROOT.value(); } tempDB() = default; ~tempDB() = default; };