1/*
2 * Copyright 2011, Haiku, Inc.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _PACKAGE__ATTRIBUTES_H_
6#define _PACKAGE__ATTRIBUTES_H_
7
8
9namespace BPackageKit {
10
11
12// attributes used in package and as file attribute, too
13extern const char* kPackageNameAttribute;
14extern const char* kPackageVendorAttribute;
15extern const char* kPackageVersionAttribute;
16
17// attributes kept local to packages
18extern const char* kPackageCopyrightsAttribute;
19extern const char* kPackageLicensesAttribute;
20extern const char* kPackagePackagerAttribute;
21extern const char* kPackageProvidesAttribute;
22extern const char* kPackageRequiresAttribute;
23
24
25}	// namespace BPackageKit
26
27
28#endif // _PACKAGE__ATTRIBUTES_H_
29