Skip to content

Commit

Permalink
missing headers included
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoryKogan committed Dec 2, 2023
1 parent de9905f commit b961c34
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/FileSystem/Converter/Converter.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#pragma once

#include <cstdint>
#include <stdexcept>
#include <string>
#include <vector>

Expand Down
1 change: 1 addition & 0 deletions src/FileSystem/DiskHandler/DiskHandler.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <cstdint>
#include <utility>

class DiskHandler {
Expand Down
1 change: 1 addition & 0 deletions src/FileSystem/DiskHandler/DiskReader/DiskReader.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <fstream>
#include <memory>
#include <vector>

#include "../DiskHandler.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/FileSystem/DiskHandler/DiskWriter/DiskWriter.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <fstream>
#include <memory>
#include <vector>

#include "../DiskHandler.hpp"
Expand Down
1 change: 1 addition & 0 deletions src/FileSystem/FileData/FileData.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include "../Converter/Converter.hpp"
#include <stdexcept>
#include <string>

class FileData {
Expand Down

0 comments on commit b961c34

Please sign in to comment.