blob: 0001a7ece09dd3b1034deead18ec217caa215032 (
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
|