19 lines
219 B
C
19 lines
219 B
C
|
//
|
||
|
// 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
|