tahoma2d/toonz/sources/toonzlib/txshzeraryfxlevel.cpp

48 lines
1.3 KiB
C++
Raw Normal View History

2016-03-19 06:57:51 +13:00
#include "toonz/txshzeraryfxlevel.h"
#include "toonz/txshleveltypes.h"
#include "toonz/txshzeraryfxcolumn.h"
//-----------------------------------------------------------------------------
DEFINE_CLASS_CODE(TXshZeraryFxLevel, 51)
PERSIST_IDENTIFIER(TXshZeraryFxLevel, "zeraryFxLevel")
//-----------------------------------------------------------------------------
TXshZeraryFxLevel::TXshZeraryFxLevel()
2016-06-15 18:43:10 +12:00
: TXshLevel(m_classCode, L""), m_zeraryFxColumn(0) {
m_type = ZERARYFX_XSHLEVEL;
2016-03-19 06:57:51 +13:00
}
//-----------------------------------------------------------------------------
2016-06-15 18:43:10 +12:00
TXshZeraryFxLevel::~TXshZeraryFxLevel() {
if (m_zeraryFxColumn) m_zeraryFxColumn->release();
2016-03-19 06:57:51 +13:00
}
//-------------------------------------------------------------------
2016-06-15 18:43:10 +12:00
void TXshZeraryFxLevel::setColumn(TXshZeraryFxColumn *column) {
m_zeraryFxColumn = column;
m_zeraryFxColumn->addRef();
2016-03-19 06:57:51 +13:00
}
//-----------------------------------------------------------------------------
2016-06-15 18:43:10 +12:00
void TXshZeraryFxLevel::loadData(TIStream &is) {}
2016-03-19 06:57:51 +13:00
//-----------------------------------------------------------------------------
2016-06-15 18:43:10 +12:00
void TXshZeraryFxLevel::saveData(TOStream &os) {}
2016-03-19 06:57:51 +13:00
//-----------------------------------------------------------------------------
2016-06-15 18:43:10 +12:00
void TXshZeraryFxLevel::load() {}
2016-03-19 06:57:51 +13:00
//-----------------------------------------------------------------------------
2016-06-15 18:43:10 +12:00
void TXshZeraryFxLevel::save() {}