Advertisement
Guest User

Untitled

a guest
Apr 12th, 2017
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.49 KB | None | 0 0
  1. #pragma once
  2. #include <string>
  3. // #include <ostream>
  4. #include "SequencePrinterBase.h"
  5.  
  6. namespace SequencePrinters
  7. {
  8.     class SequencePrinterToString : public SequencePrinterBase
  9.     {
  10.     private:
  11.         std::string& s;
  12.     public:
  13.         SequencePrinterToString(std::string& s);
  14.  
  15.         //friend std::string& operator+=(std::string& str, const SequencePrinterToString& sequencePrinter);
  16.         //friend std::ostream& operator<<(std::ostream& stream, const SequencePrinterToString& printer);
  17.  
  18.         void print();
  19.     };
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement