blob: 90842abf0968b0ecc58b75bea887982a33a18cb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef XMLPROCESSING_H_INCLUDED
#define XMLPROCESSING_H_INCLUDED
#include <vector>
#include <wx/string.h>
#include "../shared/xmlBase.h"
namespace xmlAccess
{
struct XmlRealConfig
{
XmlRealConfig() : delay(5) {}
std::vector<wxString> directories;
wxString commandline;
unsigned int delay;
};
void readRealConfig(const wxString& filename, XmlRealConfig& config); //throw (xmlAccess::XmlError);
void writeRealConfig(const XmlRealConfig& outputCfg, const wxString& filename); //throw (xmlAccess::XmlError);
}
#endif // XMLPROCESSING_H_INCLUDED
|