Advertisement
Guest User

Untitled

a guest
Oct 25th, 2014
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | None | 0 0
  1. /*
  2.  * VehicleRentalContract.cpp
  3.  *
  4.  *  Created on: 25 oct. 2014
  5.  *      Author: Clément
  6.  */
  7.  
  8. #include <iostream>
  9. using namespace std;
  10. #include "VehicleRentalContract.h"
  11.  
  12. VehicleRentalContract::VehicleRentalContract(int newContract_nb,Customer* newptcust, Vehicle* newptvehicle) {
  13. contract_nb= newContract_nb;
  14. ptcust=newptcust;
  15. ptvehicle=newptvehicle;
  16. }
  17.  
  18. VehicleRentalContract::~VehicleRentalContract() {
  19.     // TODO Auto-generated destructor stub
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement