-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFavFiles.cpp
70 lines (61 loc) · 1.52 KB
/
FavFiles.cpp
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/******************************************************************************
** (C) Chris Oldwood
**
** MODULE: FAVFILES.CPP
** COMPONENT: The Application
** DESCRIPTION: CFavFiles class definition.
**
*******************************************************************************
*/
#include "Common.hpp"
#include "FavFiles.hpp"
/******************************************************************************
** Method: Constructor.
**
** Description: .
**
** Parameters: None.
**
** Returns: Nothing.
**
*******************************************************************************
*/
CFavFiles::CFavFiles()
: CTable(TXT("FavFiles"))
{
// Create the table schema.
AddColumn(TXT("ModName"), MDCT_VARSTR, MOD_NAME_LEN, CColumn::UNIQUE );
AddColumn(TXT("ModFile"), MDCT_VARSTR, MOD_FILE_LEN, CColumn::DEFAULTS);
}
/******************************************************************************
** Method: Destructor.
**
** Description: .
**
** Parameters: None.
**
** Returns: Nothing.
**
*******************************************************************************
*/
CFavFiles::~CFavFiles()
{
}
/******************************************************************************
** Method: CreateRow()
**
** Description: Creates a new row and initialises it.
**
** Parameters: None.
**
** Returns: The new row.
**
*******************************************************************************
*/
CRow& CFavFiles::CreateRow()
{
CRow& oRow = CTable::CreateRow();
oRow[MOD_NAME] = TXT("");
oRow[MOD_FILE] = TXT("");
return oRow;
}