summaryrefslogtreecommitdiffstats
path: root/PrivateAccess.cpp
blob: 36a90edb9d14c5f16105d5c63378cd6b0b647bd3 (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
#include <iostream>

#include "SavEdit.h"

SavEdit::SavEdit()
{
    /*
     * init
     */

    filename = "Pokemon - Red Version (USA, Europe) (SGB Enhanced).sav";
    lang = en_US;
}

std::string SavEdit::getFilename()
{
    /*
     * Return the file name.
     */

    return filename;
}

void SavEdit::setFilename(std::string fname)
{
    /*
     * Set the file name.
     */

    filename = fname;
}