#ifndef CT_ABSTRACTEXPORTER_P_H #define CT_ABSTRACTEXPORTER_P_H #include "interfaces.h" class CT_AbstractCloudIndex; class CT_AbstractExporterPrivate { public: CT_AbstractExporterPrivate() { m_stop = false; _filepath = "."; _progress = 0; m_dm = NULL; m_myd = NULL; m_myStep = NULL; _eItems = true; _ePoints = false; _eFaces = false; _eEdges = false; _eOnlyGroup = false; } ~CT_AbstractExporterPrivate() {} QList _formats; QString _errMsg; QList _items; QList _points; QList _faces; QList _edges; QString _filepath; int _progress; DocumentManagerInterface *m_dm; DocumentInterface *m_myd; CT_VirtualAbstractStep *m_myStep; bool _eItems; bool _ePoints; bool _eFaces; bool _eEdges; bool _eOnlyGroup; bool m_stop; QString m_tooltip; }; #endif // CT_ABSTRACTEXPORTER_P_H