21 lines
302 B
C++
21 lines
302 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
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
#include <string>
|
|
|
|
using namespace std;
|
|
|
|
class car
|
|
{
|
|
public:
|
|
std::string manufacturer;
|
|
std::string model;
|
|
void print_info();
|
|
};
|