File: msgformatter.cpp

package info (click to toggle)
einstein 2.0.dfsg.2-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,164 kB
  • ctags: 1,652
  • sloc: cpp: 10,429; makefile: 118; sh: 1
file content (20 lines) | stat: -rw-r--r-- 405 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "msgformatter.h"
#include "table.h"
#include "unicode.h"
#include "messages.h"


MsgFormatter::MsgFormatter()
{
}

void MsgFormatter::format(const std::wstring &fileName, Buffer &output)
{
    Table table(toMbcs(fileName));
    Messages msg;
    for (Table::Iterator i = table.begin(); i != table.end(); i++) {
        msg.add((*i).first, (*i).second->asString());
    }
    msg.save(output);
}