/* * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de. * Distributed under the terms of the MIT License. */ #include #include namespace BPackageKit { namespace BHPKG { BErrorOutput::~BErrorOutput() { } void BErrorOutput::PrintError(const char* format, ...) { va_list args; va_start(args, format); PrintErrorVarArgs(format, args); va_end(args); } } // namespace BHPKG } // namespace BPackageKit