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