#include <QColor>
#include <QList>
#include <QMap>
#include <QPointF>
#include <QString>
#include <memory>
Go to the source code of this file.
|
| using | sf::dxf::LayerEntities = QMap< QString, QList< std::shared_ptr< Entity > > > |
| | LayerEntities holds all parsed entities, organized by layer. Using std::shared_ptr for automatic memory management of entity objects.
|
| |
| using | sf::dxf::Entities = LayerEntities::mapped_type |
| | Entities type from the map for holding entities of a layer.
|
| |
| using | sf::dxf::Layers = QMap< QString, LayerInfo > |
| | Layers holds information for all layers in the DXF file.
|
| |