~ubuntu-branches/debian/jessie/dxflib/jessie

« back to all changes in this revision

Viewing changes to src/dl_entities.h

  • Committer: Package Import Robot
  • Author(s): Scott Howard
  • Date: 2013-12-13 16:41:48 UTC
  • mfrom: (8.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20131213164148-m20ph2ja1d4vlxv4
Tags: 2.5.0.0-2
Merge from experimental to unstable. (Closes: #731577)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/****************************************************************************
2
 
** $Id: dl_entities.h 7812 2008-01-04 16:56:09Z andrew $
3
 
**
4
 
** Copyright (C) 2001-2003 RibbonSoft. All rights reserved.
 
2
** Copyright (C) 2001-2011 RibbonSoft. All rights reserved.
5
3
**
6
4
** This file is part of the dxflib project.
7
5
**
45
43
                 int lFlags) {
46
44
        name = lName;
47
45
        flags = lFlags;
48
 
        plotF = true;
49
 
    }
50
 
    DL_LayerData(const string& lName,
51
 
                 int lFlags,bool lPlotF) {
52
 
        name = lName;
53
 
        flags = lFlags;
54
 
        plotF = lPlotF;//set help Layer, if plotF is false.
55
46
    }
56
47
 
57
48
    /** Layer name. */
58
49
    string name;
59
50
    /** Layer flags. (1 = frozen, 2 = frozen by default, 4 = locked) */
60
51
    int flags;
61
 
    bool plotF;
62
52
};
63
53
 
64
54
 
1280
1270
 
1281
1271
    /*! Number of edges in this loop. */
1282
1272
    int numEdges;
1283
 
    int pathType; //Boundary path type
1284
1273
};
1285
1274
 
1286
1275