mirror of
https://review.haiku-os.org/haiku
synced 2025-01-22 06:16:03 +01:00
35edda8f0b
refreshed git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40280 a95241bf-73f2-0310-859d-f6bbb57e9c96
32 lines
661 B
C++
32 lines
661 B
C++
/*
|
|
* Copyright 2011, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _HAIKU__PACKAGE__ATTRIBUTES_H_
|
|
#define _HAIKU__PACKAGE__ATTRIBUTES_H_
|
|
|
|
|
|
namespace Haiku {
|
|
|
|
namespace Package {
|
|
|
|
|
|
// attributes used in package and as file attribute, too
|
|
extern const char* kNameAttribute;
|
|
extern const char* kVendorAttribute;
|
|
extern const char* kVersionAttribute;
|
|
|
|
// attributes kept local to packages
|
|
extern const char* kCopyrightAttribute;
|
|
extern const char* kLicenseAttribute;
|
|
extern const char* kProvidesAttribute;
|
|
extern const char* kRequiresAttribute;
|
|
|
|
|
|
} // namespace Package
|
|
|
|
} // namespace Haiku
|
|
|
|
|
|
#endif // _HAIKU__PACKAGE__ATTRIBUTES_H_
|