XPlor/libs/assets/assets.cpp

45 lines
928 B
C++
Raw Normal View History

2025-06-07 11:20:47 -04:00
#include "assets.h"
#include <QFile>
#include <QDataStream>
#include <QDebug>
Assets::Assets()
// : mStem()
// , mSize()
// , mTagCount()
// , mTags()
// , mRecordCount()
// , mRecords()
// , mAssetMap()
{
}
Assets::~Assets() {
}
Assets::Assets(const Assets &aAssets) {
// mStem = aZoneFile.mStem;
// mSize = aZoneFile.mSize;
// mTagCount = aZoneFile.mTagCount;
// mTags = aZoneFile.mTags;
// mRecordCount = aZoneFile.mRecordCount;
// mRecords = aZoneFile.mRecords;
// mAssetMap = aZoneFile.mAssetMap;
}
Assets &Assets::operator=(const Assets &other) {
if (this != &other) {
// mStem = other.mStem;
// mSize = other.mSize;
// mTagCount = other.mTagCount;
// mTags = other.mTags;
// mRecordCount = other.mRecordCount;
// mRecords = other.mRecords;
// mAssetMap = other.mAssetMap;
}
return *this;
}