haiku/headers/os/package/hpkg/StandardErrorOutput.h
Ingo Weinhold 0816749e41 package_repo: Removes dependency to package
* 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".
2013-04-01 23:06:33 +00:00

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_