Advertisement
Guest User

C++ Workshop Template

a guest
Oct 30th, 2015
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.48 KB | None | 0 0
  1. #include <iostream>   /* cout, cin */
  2. #include <stdio.h>      /* printf, scanf, puts, NULL */
  3. #include <stdlib.h>     /* srand, rand */
  4. #include <time.h>       /* time */
  5. #include <string>
  6. #include <vector>
  7. //This is so we do not have to specify the scope for things coming from the std library.
  8. using namespace std;
  9. //Class definition with public and private access specifiers.
  10. class Responder {
  11. public:
  12.     Responder() {
  13.     }
  14. private:
  15. };
  16.  
  17. int main() {
  18.     return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement