1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/**
* @brief Validate the kml file
* @param filename The filename to check
* @return true if the file is valid, false otherwise
*/
bool ; /* Validate KML file */
/**
* @brief Read the content of the kml file
* @param filename The filename to check
* @return The content of the file
*/
char* ; /* Read KML file */
/**
* @brief Read the author of the kml file
* @param filename The filename to check
* @return The author of the file
*/
char* ; /* Read KML author */
/**
* @brief Read the name of the kml file
* @param filename The filename to check
* @return The name of the file
*/
char* ; /* Read KML name */
/**
* @brief Read the description of the kml file
* @param filename The filename to check
* @return The description of the file
*/
char* ; /* Read KML description */
/**
* @brief Read the version of the kml file
* @param filename The filename to check
* @return The version of the file
*/
float ; /* Read KML version */
/**
* @brief Read the size of the kml file
* @param filename The filename to check
* @return The size of the file
*/
float ; /* Read KML size */