From e346087f316e112a8af9494be13bfff188f3cc0b Mon Sep 17 00:00:00 2001 From: lonkaars Date: Tue, 30 May 2023 15:13:18 +0200 Subject: file copy working --- os2eindopdracht/SampleStream.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'os2eindopdracht/SampleStream.h') diff --git a/os2eindopdracht/SampleStream.h b/os2eindopdracht/SampleStream.h index e69de29..94bb941 100644 --- a/os2eindopdracht/SampleStream.h +++ b/os2eindopdracht/SampleStream.h @@ -0,0 +1,19 @@ +#pragma once + +#include +#include + +using std::string; +using std::vector; + +class SampleStream { +public: + SampleStream(string input_stream); + +public: + void load(string input); + string save(); + +private: + vector _stream; +}; -- cgit v1.2.3