#ifndef LAND_H
#define LAND_H

#include "common.h"
#include "Property.h"

class Land : public Property {

 public:

  Land(int price, int lot_size, bool water=false);
  Land(const Land& old);

  ~Land();

  string toString() override;


 private:
  int _lot_size;
  bool _waterfront;
  

};

#endif