ISCE_INSAR/library/isceLib/include/Peg.h

19 lines
219 B
C
Raw Normal View History

2019-01-16 19:40:08 +00:00
//
// Author: Joshua Cohen
// Copyright 2017
//
#ifndef ISCELIB_PEG_H
#define ISCELIB_PEG_H
namespace isceLib {
struct Peg {
double lat, lon, hdg;
Peg();
Peg(const Peg&);
};
}
#endif