haiku/headers/os/package/hpkg/RepositoryContentHandler.h
Oliver Tappe 2b6e6760b6 * add listing of repository attributes to 'package_repo list'
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40508 a95241bf-73f2-0310-859d-f6bbb57e9c96
2011-02-15 12:48:02 +00:00

36 lines
617 B
C++

/*
* Copyright 2011, Haiku, Inc.
* Distributed under the terms of the MIT License.
*/
#ifndef _PACKAGE__HPKG__REPOSITORY_CONTENT_HANDLER_H_
#define _PACKAGE__HPKG__REPOSITORY_CONTENT_HANDLER_H_
#include <SupportDefs.h>
#include <package/hpkg/PackageContentHandler.h>
namespace BPackageKit {
class BRepositoryInfo;
namespace BHPKG {
class BRepositoryContentHandler : public BPackageContentHandler {
public:
virtual status_t HandleRepositoryInfo(
const BRepositoryInfo& info) = 0;
};
} // namespace BHPKG
} // namespace BPackageKit
#endif // _PACKAGE__HPKG__REPOSITORY_CONTENT_HANDLER_H_