Fixed headers

This commit is contained in:
Bob Polis 2022-12-18 16:40:32 +01:00
parent 8ab548900b
commit bd1d4592fc
3 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#include "libscio.hpp" #include "imemfile.hpp"
sc::io::imemfile::imemfile(const std::string& path) : std::istream {&_buf}, sc::io::imemfile::imemfile(const std::string& path) : std::istream {&_buf},
_file {path}, _file {path},

View File

@ -1,4 +1,4 @@
#include "libscio.hpp" #include "memstreambuf.hpp"
#include <unistd.h> #include <unistd.h>
#include <cstring> #include <cstring>

View File

@ -2,6 +2,7 @@
#define MEMSTREAMBUF_H_ #define MEMSTREAMBUF_H_
#include <streambuf> #include <streambuf>
#include <iostream>
namespace sc { namespace sc {
namespace io { namespace io {