/* * Copyright 2009-2011, Ingo Weinhold, ingo_weinhold@gmx.de. * Distributed under the terms of the MIT License. */ #include "PackageNodeAttribute.h" #include #include #include "ClassCache.h" CLASS_CACHE(PackageNodeAttribute); PackageNodeAttribute::PackageNodeAttribute(uint32 type, const PackageData& data) : fData(data), fName(), fIndexCookie(NULL), fType(type) { } PackageNodeAttribute::~PackageNodeAttribute() { } void PackageNodeAttribute::Init(const String& name) { fName = name; }