Advertisement
Guest User

Untitled

a guest
Jun 26th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #pragma once
  2. #include "main.h"
  3. #include "fileCommands.hpp"//!!!Problem
  4. #include "fileObject.hpp"
  5. class FileSystemUser {
  6. ...
  7. void start() {
  8. FileCommands fc;
  9. ...
  10. }
  11. ....
  12. }
  13.  
  14. #pragma once
  15. #include "main.h"
  16. #include "stringService.hpp"
  17. #include "fileSystemUser.hpp" //!!!Problem
  18. #include "debug.hpp"
  19. class FileCommands {
  20. int analyze(string command, FileSystemUser* fileSystem) {...}
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement