7575abbca2
It uses sub-namespace BPackage::BHPKG::V1. Unlike the one for the current format version, the V1 version of BPackageInfoContentHandler lives in BHPKG(::V1) sub-namespace and is private.
45 lines
802 B
C++
45 lines
802 B
C++
/*
|
|
* Copyright 2009,2011, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _PACKAGE__HPKG__V1__PACKAGE_ENTRY_ATTRIBUTE_H_
|
|
#define _PACKAGE__HPKG__V1__PACKAGE_ENTRY_ATTRIBUTE_H_
|
|
|
|
|
|
#include <package/hpkg/v1/PackageData.h>
|
|
|
|
|
|
namespace BPackageKit {
|
|
|
|
namespace BHPKG {
|
|
|
|
namespace V1 {
|
|
|
|
|
|
class BPackageEntryAttribute {
|
|
public:
|
|
BPackageEntryAttribute(const char* name);
|
|
|
|
const char* Name() const { return fName; }
|
|
uint32 Type() const { return fType; }
|
|
|
|
BPackageData& Data() { return fData; }
|
|
|
|
void SetType(uint32 type) { fType = type; }
|
|
|
|
private:
|
|
const char* fName;
|
|
uint32 fType;
|
|
BPackageData fData;
|
|
};
|
|
|
|
|
|
} // namespace V1
|
|
|
|
} // namespace BHPKG
|
|
|
|
} // namespace BPackageKit
|
|
|
|
|
|
#endif // _PACKAGE__HPKG__V1__PACKAGE_ENTRY_ATTRIBUTE_H_
|