2011-01-24 23:48:03 +03:00
|
|
|
/*
|
|
|
|
* Copyright 2011, Haiku, Inc.
|
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2011-01-25 20:07:27 +03:00
|
|
|
#ifndef _PACKAGE__ATTRIBUTES_H_
|
|
|
|
#define _PACKAGE__ATTRIBUTES_H_
|
2011-01-24 23:48:03 +03:00
|
|
|
|
|
|
|
|
2011-01-25 20:07:27 +03:00
|
|
|
namespace BPackageKit {
|
2011-01-24 23:48:03 +03:00
|
|
|
|
|
|
|
|
|
|
|
// attributes used in package and as file attribute, too
|
2011-01-25 20:07:27 +03:00
|
|
|
extern const char* kPackageNameAttribute;
|
|
|
|
extern const char* kPackageVendorAttribute;
|
|
|
|
extern const char* kPackageVersionAttribute;
|
2011-01-24 23:48:03 +03:00
|
|
|
|
|
|
|
// attributes kept local to packages
|
2011-01-28 02:17:03 +03:00
|
|
|
extern const char* kPackageCopyrightsAttribute;
|
|
|
|
extern const char* kPackageLicensesAttribute;
|
|
|
|
extern const char* kPackagePackagerAttribute;
|
2011-01-25 20:07:27 +03:00
|
|
|
extern const char* kPackageProvidesAttribute;
|
|
|
|
extern const char* kPackageRequiresAttribute;
|
2011-01-24 23:48:03 +03:00
|
|
|
|
|
|
|
|
2011-01-25 20:07:27 +03:00
|
|
|
} // namespace BPackageKit
|
2011-01-24 23:48:03 +03:00
|
|
|
|
|
|
|
|
2011-01-25 20:07:27 +03:00
|
|
|
#endif // _PACKAGE__ATTRIBUTES_H_
|