/* * Association.h * * Created on: Apr 17, 2016 * Author: beckermj */ #ifndef ASSOCIATION_H_ #define ASSOCIATION_H_ #include using ApplicationFramework::Collections::Generic::List; #include "ObjectModelReference.h" #include "DataFormatReference.h" #include namespace UniversalEditor { class Association { AFX_PROPERTY_READONLY(List*, ObjectModelsList); AFX_PROPERTY_READONLY(List*, DataFormatsList); private: static List* _associationsList; public: Association(); virtual ~Association(); static List* getAssociationsList(); }; } /* namespace UniversalEditor */ #endif /* ASSOCIATION_H_ */