- Vehicle.cpp
- #ifndef Vehicle_cpp
- #define Vehicle_cpp
- #include <iostream>
- #include "Vehicle.h"
- using namespace std;
- void Vehicle::display()
- {
- cout<<"I'm the Vehicle!!!!!"<<endl;
- }
- //include w nawiasach <> wystepuje jesli dodajemy biblioteki systemowe
- //include w cudzyslowie "" wystepuje jesli dodajemy biblioteki wlasne w katalogu projektu
- #endif