1 /* 2 * Copyright 2013, Haiku, Inc. All Rights Reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef _PACKAGE__HPKG__NO_ERROR_OUTPUT_H_ 6 #define _PACKAGE__HPKG__NO_ERROR_OUTPUT_H_ 7 8 9 #include <package/hpkg/ErrorOutput.h> 10 11 12 namespace BPackageKit { 13 14 namespace BHPKG { 15 16 17 class BNoErrorOutput : public BErrorOutput { 18 public: 19 virtual void PrintErrorVarArgs(const char* format, 20 va_list args); 21 }; 22 23 24 } // namespace BHPKG 25 26 } // namespace BPackageKit 27 28 29 #endif // _PACKAGE__HPKG__NO_ERROR_OUTPUT_H_ 30