KJB
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
xml.h
Go to the documentation of this file.
1 
9 /*
10  * $Id: xml.h 17606 2014-09-26 01:09:51Z predoehl $
11  */
12 
13 #ifndef XML_H_MORRISES_INCLUDED_UOFARIZONAVISION
14 #define XML_H_MORRISES_INCLUDED_UOFARIZONAVISION
15 
16 #include <string>
17 
18 #include <topo_cpp/layer.h>
19 
20 namespace kjb
21 {
22 namespace TopoFusion
23 {
24 
25 int readTrack_GPX( const std::string&, layer* );
26 int writeTrack_GPX( const std::string&, const layer& );
27 
28 }
29 } // end namespace kjb
30 
31 #endif
Contains definitions of basic TopoFusion data structures.
int readTrack_GPX(const std::string &filename, layer *l)
read a track from a named file into the pointed-to layer
Definition: xml.cpp:1039
int writeTrack_GPX(const std::string &filename, const layer &l)
write a track (stored in the indicated layer) into a named file
Definition: xml.cpp:1103