#pragma once #include <iostream> class Stream { private: public: Stream(){}; ~Stream(){}; int Id; std::string uri; };