Subversion Repositories NaviCtrl

Rev

Rev 221 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 221 Rev 338
Line 1... Line 1...
1
//________________________________________________________________________________________________________________________________________
1
//________________________________________________________________________________________________________________________________________
2
//
2
//
3
// Definition  of gpx-header and footer elements for documents
3
// Definition  of gpx-header and footer elements for documents
4
//
4
//
5
//________________________________________________________________________________________________________________________________________
5
//________________________________________________________________________________________________________________________________________
6
 
-
 
7
 
6
/*
8
const s8 GPX_DOCUMENT_HEADER[] =
7
const s8 GPX_DOCUMENT_HEADER[] =
9
{
8
{
10
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\r\n"
9
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\r\n"
11
"<gpx creator=\"NC\" version=\"1.0\" >\r\n"
10
"<gpx creator=\"NC\" version=\"1.0\" >\r\n"
12
"\r\n"
11
"\r\n"
Line 15... Line 14...
15
"<text>MikroKopter</text>\r\n"
14
"<text>MikroKopter</text>\r\n"
16
"</link>\r\n"
15
"</link>\r\n"
17
"</metadata>\r\n"
16
"</metadata>\r\n"
18
"\r\n"
17
"\r\n"
19
};
18
};
-
 
19
*/
-
 
20
const s8 GPX_DOCUMENT_HEADER1[] =
-
 
21
{
-
 
22
"<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\" ?>\r\n"
-
 
23
"<gpx creator=\"NC\" version=\"2.0\" >\r\n"
-
 
24
"\r\n"
-
 
25
"<metadata>\r\n"
-
 
26
"<link href=\"http://www.mikrokopter.de\">\r\n"
-
 
27
"<text>MikroKopter</text>\r\n"
-
 
28
"</link>\r\n"
-
 
29
};
-
 
30
 
-
 
31
const s8 GPX_DOCUMENT_HEADER2[] =
-
 
32
{
-
 
33
"</metadata>\r\n"
-
 
34
"\r\n"
-
 
35
};
-
 
36
 
Line 20... Line 37...
20
 
37
 
21
//________________________________________________________________________________________________________________________________________
38
//________________________________________________________________________________________________________________________________________
22
//
39
//
23
// footer of an gpx-file.
40
// footer of an gpx-file.