1/*
2 * Copyright 2009-2011, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include "PackageNodeAttribute.h"
8
9#include <stdlib.h>
10#include <string.h>
11
12#include "ClassCache.h"
13
14
15CLASS_CACHE(PackageNodeAttribute);
16
17
18PackageNodeAttribute::PackageNodeAttribute(uint32 type,
19	const PackageData& data)
20	:
21	fData(data),
22	fName(),
23	fIndexCookie(NULL),
24	fType(type)
25{
26}
27
28
29PackageNodeAttribute::~PackageNodeAttribute()
30{
31}
32
33
34void
35PackageNodeAttribute::Init(const String& name)
36{
37	fName = name;
38}
39