File engine_create_info.h File List > backend > engine_create_info.h Go to the documentation of this file #pragma once #include <string_view> namespace uipc::backend { class EngineCreateInfo { public: std::string_view workspace; }; } // namespace uipc::backend using EngineCreateInfo = uipc::backend::EngineCreateInfo;