xref: /haiku/src/kits/package/hpkg/PackageEntryAttribute.cpp (revision 5fb1c6ff1f55fe4094a761b653041b3a0b9abf1d)
1 /*
2  * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3  * Distributed under the terms of the MIT License.
4  */
5 
6 
7 #include <package/hpkg/PackageEntryAttribute.h>
8 
9 
10 namespace BPackageKit {
11 
12 namespace BHPKG {
13 
14 
BPackageEntryAttribute(const char * name)15 BPackageEntryAttribute::BPackageEntryAttribute(const char* name)
16 	:
17 	fName(name),
18 	fType(0)
19 {
20 }
21 
22 
23 }	// namespace BHPKG
24 
25 }	// namespace BPackageKit
26