-
Notifications
You must be signed in to change notification settings - Fork 0
/
InstallDelete.h
42 lines (32 loc) · 1021 Bytes
/
InstallDelete.h
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
40
41
42
#ifndef INSTALLDELETE_H
#define INSTALLDELETE_H
#include "Comment.h"
#include "Common.h"
#include "Comptask.h"
class CInstallDelete : public CComment, public CCommon, public CCompTask
{
public:
/** Default constructor */
CInstallDelete();
/** Default destructor */
virtual ~CInstallDelete();
/** Set m_Type
* \param val New value to set
*/
void SetType(wxString val) { m_Type = val; }
/** Set m_Name
* \param val New value to set
*/
void SetName(wxString val) { m_Name = val; }
void Analize( const wxString& content, const wxString& line);
void FillContent(wxListCtrl* liste);
static void AddHeader(wxListCtrl* liste);
void WriteInFile( wxTextFile* File);
protected:
private:
wxString m_Type; //!< Member variable "m_Type"
wxString m_Name; //!< Member variable "m_Name"
static int m_index_type; //!< Member variable "m_index_type"
static int m_index_name; //!< Member variable "m_index_name"
};
#endif // INSTALLDELETE_H