0816749e41
* Move StandardErrorOutput to libpackage and into proper namespace to avoid "package_repo" having to reuse the "package" source file. * package_repo: Fix incorrect includes of "package.h".
30 lines
549 B
C++
30 lines
549 B
C++
/*
|
|
* Copyright 2009-2013, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _PACKAGE__HPKG__STANDARD_ERROR_OUTPUT_H_
|
|
#define _PACKAGE__HPKG__STANDARD_ERROR_OUTPUT_H_
|
|
|
|
|
|
#include <package/hpkg/ErrorOutput.h>
|
|
|
|
|
|
namespace BPackageKit {
|
|
|
|
namespace BHPKG {
|
|
|
|
|
|
class BStandardErrorOutput : public BErrorOutput {
|
|
public:
|
|
virtual void PrintErrorVarArgs(const char* format,
|
|
va_list args);
|
|
};
|
|
|
|
|
|
} // namespace BHPKG
|
|
|
|
} // namespace BPackageKit
|
|
|
|
|
|
#endif // _PACKAGE__HPKG__STANDARD_ERROR_OUTPUT_H_
|