Advertisement
koodeta

Car.h

Apr 29th, 2014
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include "stdafx.h"
  2. #include <stdio.h>
  3. #include <string>
  4. #include <iostream>
  5.  
  6. using namespace std;
  7.  
  8. // Mutator method prototypes
  9. void setYearModel(int);
  10. void setMake(string);
  11. void setSpeed(int);
  12. void accelerate(int);
  13. void brake(int);
  14. // Accessor method prototypes
  15. int getYearModel();
  16. string getMake();
  17. int getSpeed();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement