21 lines
384 B
C++
21 lines
384 B
C++
|
/*
|
||
|
|
||
|
Basic Car class
|
||
|
just here to make the demonstration in the main file possible
|
||
|
explanation of the code here will be given in later lessons
|
||
|
|
||
|
*/
|
||
|
|
||
|
#include "car.h"
|
||
|
#include <iostream>
|
||
|
#include <string>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
void car::print_info()
|
||
|
{
|
||
|
cout << "Car Information:" << endl;
|
||
|
cout << "- manufacturer: " << manufacturer << endl;
|
||
|
cout << "- model: " << model << endl;
|
||
|
}
|