-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwxBupBagLogListh.h
34 lines (29 loc) · 992 Bytes
/
wxBupBagLogListh.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
/*-----------------------------------------------------------------
* Name: wxBupBagLogListh.h
* Purpose:
* Author: A. Wiegert
*
* Copyright:
* Licence: wxWidgets licence
*-------------------------------------------------------------- */
#ifndef _WXBUP_BAGLOG_LIST_H
#define _WXBUP_BAGLOG_LIST_H
// ------------------------------------------------------------------
#include "wx/dynarray.h"
#include "wxBupPreProcDefsh.h" // needs to be first
// ------------------------------------------------------------------
class MyBagLogDataEl
{
public:
unsigned long m_ulTotalFilesToCheck;
wxString m_wsBagLogPath;
MyBagLogDataEl(
unsigned long long ulTotalFilesToCheck,
wxString wsBagLogPath )
{ // initialize all members
m_ulTotalFilesToCheck = ulTotalFilesToCheck;
m_wsBagLogPath = wsBagLogPath;
};
};
#endif // _WXBUP_BAGLOG_LIST_H
// ------------------------------- eof ---------------------------