summaryrefslogtreecommitdiff
path: root/RealtimeSync/xmlFreeFileSync.h
blob: 8de9af087372d5bf525f4b56214593ebf209a74c (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();
}

#endif // XMLFREEFILESYNC_H_INCLUDED
bgstack15