summaryrefslogtreecommitdiff
path: root/RealtimeSync/xmlProcessing.h
blob: b8207973127db76d8017d9f01b0c9f436f2f749e (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
bgstack15