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 12 namespace BPackageKit { 13 14 namespace BHPKG { 15 16 17 BErrorOutput::~BErrorOutput() 18 { 19 } 20 21 22 void 23 BErrorOutput::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