vfsfwd.hpp 273 B

12345678910111213141516171819202122232425
  1. #pragma once
  2. namespace fs {
  3. // in dentry.hpp
  4. struct dcache;
  5. struct dentry;
  6. // in file.hpp
  7. struct file;
  8. struct regular_file;
  9. struct fifo_file;
  10. class pipe;
  11. // in filearray.hpp
  12. class file_array;
  13. // in inode.hpp
  14. struct inode;
  15. // in vfs.hpp
  16. class vfs;
  17. } // namespace fs