You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
289B

  1. #if!defined PATH_HPP
  2. #define PATH_HPP
  3. #include <string>
  4. class Path
  5. {
  6. public:
  7. static std::string extractFileName(std::string const& path);
  8. static std::string extractFileNameWithExtension(std::string const& path);
  9. static std::string extractExtension(std::string const& path);
  10. };
  11. #endif