liblcf
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
lmt_reader.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014 liblcf authors
3  * This file is released under the MIT License
4  * http://opensource.org/licenses/MIT
5  */
6 
7 #ifndef LCF_LMT_READER_H
8 #define LCF_LMT_READER_H
9 
10 #include <string>
11 #include "reader_lcf.h"
12 #include "writer_lcf.h"
13 #include "writer_xml.h"
14 #include "rpg_treemap.h"
15 
19 namespace LMT_Reader {
20 
24  bool Load(const std::string& filename, const std::string &encoding);
25 
29  bool Save(const std::string& filename, const std::string &encoding);
30 
34  bool SaveXml(const std::string& filename);
35 
39  bool LoadXml(const std::string& filename);
40 }
41 
42 #endif
bool SaveXml(const std::string &filename)
Definition: lmt_reader.cpp:45
bool Save(const std::string &filename, const std::string &encoding)
Definition: lmt_reader.cpp:32
bool LoadXml(const std::string &filename)
Definition: lmt_reader.cpp:57
bool Load(const std::string &filename, const std::string &encoding)
Definition: lmt_reader.cpp:13