blob: bd74822ea21a0493e347c60aa14a437100d22763 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "DbgPrintBase.h"
#include "../ut/Color.h"
#include "../ut/CharWriter.h"
// Unused file. Only here to force the function CharWriter::SetTextColor(ut::Color&)
// into the right place.
namespace nw4hbm {
namespace db {
// Dummy function
void dummy(ut::CharWriter* pCharWriter) {
ut::Color color;
pCharWriter->SetTextColor(color);
}
} // namespace db
} // namespace nw4r
|