Stream.h 136 B

12345678910111213
  1. #pragma once
  2. #include <iostream>
  3. class Stream
  4. {
  5. private:
  6. public:
  7. Stream(){};
  8. ~Stream(){};
  9. int Id;
  10. std::string uri;
  11. };