Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include "stdafx.h"
- #include <stdio.h>
- #include <string>
- #include <iostream>
- using namespace std;
- // Mutator method prototypes
- void setYearModel(int);
- void setMake(string);
- void setSpeed(int);
- void accelerate(int);
- void brake(int);
- // Accessor method prototypes
- int getYearModel();
- string getMake();
- int getSpeed();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement