Advertisement
Guest User

Untitled

a guest
Dec 16th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. //
  2. // AbstractVan.cpp
  3. // coursework
  4. //
  5.  
  6.  
  7. #include <iostream>
  8.  
  9. #include "AbstractAuto.h"
  10.  
  11. AbstractAuto::AbstractAuto() {
  12.  
  13. }
  14.  
  15. AbstractAuto::~AbstractAuto() {
  16. cout << "AbstractAuto destructor called" << endl;
  17. }
  18.  
  19. string AbstractAuto::getFileName() {
  20. return FileName;
  21. }
  22. //code here
  23.  
  24. //code here
  25.  
  26. //code here
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement