// -*- C++ -*- // // ---------------------------------------------------------------------- // // Brad T. Aagaard // U.S. Geological Survey // // {LicenseText} // // ---------------------------------------------------------------------- // #include #include "Fault.hh" // implementation of object methods // ---------------------------------------------------------------------- // Default constructor. pylith::faults::Fault::Fault(void) : _id(0), _label("") { // constructor } // constructor // ---------------------------------------------------------------------- // Destructor. pylith::faults::Fault::~Fault(void) { // destructor } // destructor // End of file