Skip to content

src/Utils/Path.hpp

Namespaces

Name
Engine
This namespace contains all of the necessary engine components.
Engine::Utils
Engine::Utils::Path
Filesystem path utility functions.

Source code

#pragma once
#include <string>

namespace Engine {
    namespace Utils {
        namespace Path {
            std::string getFilename(const std::string& path);
            std::string getExtension(const std::string& path);
        }
    }
}

Updated on 2022-10-19 at 22:22:00 +0000