/* * Association.cpp * * Created on: Apr 17, 2016 * Author: beckermj */ #include "Association.h" namespace UniversalEditor { List* Association::_associationsList = new List(); Association::Association() { this->_DataFormatsList = new List(); this->_ObjectModelsList = new List(); } Association::~Association() { // TODO Auto-generated destructor stub } List* Association::getAssociationsList() { return Association::_associationsList; } } /* namespace UniversalEditor */