forked from lksj/einstein-puzzle
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmsgformatter.cpp
More file actions
41 lines (29 loc) · 1.17 KB
/
msgformatter.cpp
File metadata and controls
41 lines (29 loc) · 1.17 KB
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
// This file is part of Einstein Puzzle
// Einstein Puzzle
// Copyright (C) 2003-2005 Flowix Games
// Modified 2018-02-11 by Jordan Evens <jordan.evens@gmail.com>
// Einstein Puzzle is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
// Einstein Puzzle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "msgformatter.h"
#include "msgwriter.h"
#include "table.h"
#include "unicode.h"
MsgFormatter::MsgFormatter() = default;
void MsgFormatter::format(const std::wstring &fileName, Buffer &output)
{
Table table(toMbcs(fileName));
MsgWriter msg;
for (const auto& i : table)
{
msg.add(i.first, i.second->asString());
}
msg.save(output);
}