root/src/kits/package/hpkg/ErrorOutput.cpp
/*
 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
 * Distributed under the terms of the MIT License.
 */


#include <package/hpkg/ErrorOutput.h>

#include <stdio.h>


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