1/*
2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include <package/hpkg/ErrorOutput.h>
8
9#include <stdio.h>
10
11
12namespace BPackageKit {
13
14namespace BHPKG {
15
16
17BErrorOutput::~BErrorOutput()
18{
19}
20
21
22void
23BErrorOutput::PrintError(const char* format, ...)
24{
25	va_list args;
26	va_start(args, format);
27	PrintErrorVarArgs(format, args);
28	va_end(args);
29}
30
31
32}	// namespace BHPKG
33
34}	// namespace BPackageKit
35