Panda3D
 All Classes Functions Variables Enumerations
dxfLayer.cxx
1 // Filename: dxfLayer.cxx
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 #include "dxfLayer.h"
16 
17 
18 ////////////////////////////////////////////////////////////////////
19 // Function: DXFLayer::Constructor
20 // Access: Public
21 // Description:
22 ////////////////////////////////////////////////////////////////////
23 DXFLayer::
24 DXFLayer(const string &name) : Namable(name) {
25 }
26 
27 ////////////////////////////////////////////////////////////////////
28 // Function: DXFLayer::Destructor
29 // Access: Public, Virtual
30 // Description:
31 ////////////////////////////////////////////////////////////////////
32 DXFLayer::
33 ~DXFLayer() {
34 }
A base class for all things which can have a name.
Definition: namable.h:29