Advertisement
mattparks5855

C++ Input

May 21st, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.13 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. class Bar
  4. {
  5. private:
  6.  
  7. public:
  8.     virtual void Foo(const std::string &a, const std::string &b) = 0;
  9. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement