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

#include <wx/string.h>

class wxTextCtrl;
class wxDirPickerCtrl;


namespace RealtimeSync
{
    void setDirectoryName(const wxString& dirname, wxTextCtrl* txtCtrl, wxDirPickerCtrl* dirPicker);
}

#endif // FUNCTIONS_H_INCLUDED
bgstack15