Panda3D
Loading...
Searching...
No Matches
dxfLayer.h
Go to the documentation of this file.
1/**
2 * PANDA 3D SOFTWARE
3 * Copyright (c) Carnegie Mellon University. All rights reserved.
4 *
5 * All use of this software is subject to the terms of the revised BSD
6 * license. You should have received a copy of this license along
7 * with this source code in a file named "LICENSE."
8 *
9 * @file dxfLayer.h
10 * @author drose
11 * @date 2004-05-04
12 */
13
14#ifndef DXFLAYER_H
15#define DXFLAYER_H
16
17#include "pandatoolbase.h"
18#include "namable.h"
19
20/**
21 * This represents a "layer" as read from the DXF file. A layer may be
22 * defined by reading the header part of the file, or it may be implicitly
23 * defined by an entity's having referenced it.
24 *
25 * User code may derive from DXFLayer to associate private data with each
26 * layer, if desired.
27 */
28class DXFLayer : public Namable {
29public:
30 DXFLayer(const std::string &name);
31 virtual ~DXFLayer();
32};
33
34#endif
This represents a "layer" as read from the DXF file.
Definition dxfLayer.h:28
A base class for all things which can have a name.
Definition namable.h:26
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.