blob: eca5290a06cbe218ddaa3fac29b0740b64fcfdb7 (
plain)
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
|
#include <iostream>
#include "SavEdit.h"
int main(int argc, char *argv[])
{
// boolean for keeping the main loop going
bool done = false;
// Create obj
SavEdit save;
if(argc == 2)
{
// Set the file name
save.setFilename(argv[1]);
}
// Open the file
save.open();
// Create the backup
save.backup();
// Start the main loop.
while(!done)
done = save.select();
// Update the checksum
save.checksum();
// Save and close the file.
save.saveNewFile();
return 0;
}
|