-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathLoadSaveBase.hpp
More file actions
40 lines (31 loc) · 787 Bytes
/
LoadSaveBase.hpp
File metadata and controls
40 lines (31 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/////////////////////////////////////////////////////////////////////////////
// Name: LoadSaveBase.hpp
// Purpose:
// Author: Richard W. Allen
// Modified by:
// Created: 11/04/2017 17:45:05
// RCS-ID:
// Copyright: Richard W. Allen 2017
// Licence: GPL 2
/////////////////////////////////////////////////////////////////////////////
#pragma once
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#endif
#ifndef WX_PRECOMP
#include "wx/wx.h"
#endif
#include "Settings/Settings.hpp"
class LoadSaveBase
{
public:
LoadSaveBase();
~LoadSaveBase();
protected:
bool Execute( wxString exe );
bool Execute( wxString exe, wxArrayString& output );
void RemoveDir( wxString dir );
bool PowerShell( wxString ps );
Settings& m_settings;
};