Panda3D
|
00001 // Filename: dxfLayer.h 00002 // Created by: drose (04May04) 00003 // 00004 //////////////////////////////////////////////////////////////////// 00005 // 00006 // PANDA 3D SOFTWARE 00007 // Copyright (c) Carnegie Mellon University. All rights reserved. 00008 // 00009 // All use of this software is subject to the terms of the revised BSD 00010 // license. You should have received a copy of this license along 00011 // with this source code in a file named "LICENSE." 00012 // 00013 //////////////////////////////////////////////////////////////////// 00014 00015 #ifndef DXFLAYER_H 00016 #define DXFLAYER_H 00017 00018 #include "pandatoolbase.h" 00019 #include "namable.h" 00020 00021 //////////////////////////////////////////////////////////////////// 00022 // Class : DXFLayer 00023 // Description : This represents a "layer" as read from the DXF file. 00024 // A layer may be defined by reading the header part of 00025 // the file, or it may be implicitly defined by an 00026 // entity's having referenced it. 00027 // 00028 // User code may derive from DXFLayer to associate 00029 // private data with each layer, if desired. 00030 //////////////////////////////////////////////////////////////////// 00031 class DXFLayer : public Namable { 00032 public: 00033 DXFLayer(const string &name); 00034 virtual ~DXFLayer(); 00035 }; 00036 00037 #endif