00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef DXFLAYER_H
00016 #define DXFLAYER_H
00017
00018 #include "pandatoolbase.h"
00019 #include "namable.h"
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 class DXFLayer : public Namable {
00032 public:
00033 DXFLayer(const string &name);
00034 virtual ~DXFLayer();
00035 };
00036
00037 #endif