24 lines
537 B
C++
24 lines
537 B
C++
/*
|
|
# ______ ____ ___
|
|
# | \/ ____| |___|
|
|
# | | | \ | |
|
|
#-----------------------------------------------------------------------
|
|
# Copyright 2020, tyra - https://github.com/h4570/tyra
|
|
# Licenced under Apache License 2.0
|
|
# Sandro Sobczyński <sandro.sobczynski@gmail.com>
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace Tyra {
|
|
|
|
class Loader {
|
|
protected:
|
|
std::string getFilenameFromPath(const std::string& path);
|
|
std::string getFilenameWithoutExtension(const std::string& filename);
|
|
};
|
|
|
|
} // namespace Tyra
|