Open Source Tomb Raider Engine
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.

File.h 369B

12345678910111213141516171819202122232425262728
  1. /*!
  2. * \file include/utils/File.h
  3. * \brief Recursive file-system walking utilities
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _UTILS_FILE_H_
  8. #define _UTILS_FILE_H_
  9. #include <string>
  10. class Folder;
  11. class File {
  12. public:
  13. File(std::string file);
  14. std::string& getName();
  15. std::string& getPath();
  16. private:
  17. std::string name;
  18. std::string path;
  19. };
  20. #endif