summaryrefslogtreecommitdiff
path: root/RealtimeSync/xmlFreeFileSync.h
blob: e4e0be76134e3e931af81f4181a17b3c0c9f67cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef XMLFREEFILESYNC_H_INCLUDED
#define XMLFREEFILESYNC_H_INCLUDED

#include "xmlProcessing.h"


//reuse (some of) FreeFileSync's xml files

namespace RealtimeSync
{
    void readRealOrBatchConfig(const wxString& filename, xmlAccess::XmlRealConfig& config);  //throw (xmlAccess::XmlError);

    int getProgramLanguage(); //throw (xmlAccess::XmlError);
}

#endif // XMLFREEFILESYNC_H_INCLUDED
bgstack15