ISCE_INSAR/library/isceLib/src/Peg.cpp

22 lines
248 B
C++
Raw Normal View History

2019-01-16 19:40:08 +00:00
//
// Author: Joshua Cohen
// Copyright 2017
//
#include "Peg.h"
using isceLib::Peg;
Peg::Peg() {
// Empty constructor
return;
}
Peg::Peg(const Peg &p) {
// Copy constructor
lat = p.lat;
lon = p.lon;
hdg = p.hdg;
}