mirror of
https://github.com/OpenCMT/uLib.git
synced 2025-12-06 15:31:31 +01:00
25 lines
298 B
C++
25 lines
298 B
C++
#ifndef MANAGEFILENAME_H
|
|
#define MANAGEFILENAME_H
|
|
|
|
#include <string>
|
|
#include <iostream>
|
|
|
|
|
|
|
|
class ManageFilename {
|
|
|
|
public:
|
|
static std::string GetFileExtension(const std::string& FileName);
|
|
|
|
static std::string GetFileName(const std::string& FileName);
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // MANAGEFILENAME_H
|