vfsfwd.hpp 258 B

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