xref: /haiku/headers/os/package/Attributes.h (revision cbe0a0c436162d78cc3f92a305b64918c839d079)
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 
9 namespace BPackageKit {
10 
11 
12 // attributes used in package and as file attribute, too
13 extern const char* kPackageNameAttribute;
14 extern const char* kPackageVendorAttribute;
15 extern const char* kPackageVersionAttribute;
16 
17 // attributes kept local to packages
18 extern const char* kPackageCopyrightsAttribute;
19 extern const char* kPackageLicensesAttribute;
20 extern const char* kPackagePackagerAttribute;
21 extern const char* kPackageProvidesAttribute;
22 extern const char* kPackageRequiresAttribute;
23 
24 
25 }	// namespace BPackageKit
26 
27 
28 #endif // _PACKAGE__ATTRIBUTES_H_
29