Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 30th, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 19  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Vehicle.cpp
  2.  
  3. #ifndef Vehicle_cpp
  4. #define Vehicle_cpp
  5.  
  6. #include <iostream>
  7. #include "Vehicle.h"
  8.  
  9. using namespace std;
  10.  
  11. void Vehicle::display()
  12. {
  13.         cout<<"I'm the Vehicle!!!!!"<<endl;
  14. }
  15.  
  16.  
  17. //include w nawiasach <> wystepuje jesli dodajemy biblioteki systemowe
  18. //include w cudzyslowie "" wystepuje jesli dodajemy biblioteki wlasne w katalogu projektu
  19.  
  20.  
  21. #endif