~ubuntu-branches/ubuntu/raring/openwalnut/raring

« back to all changes in this revision

Viewing changes to src/core/dataHandler/WDataSetFibers.h

  • Committer: Package Import Robot
  • Author(s): Sebastian Eichelbaum
  • Date: 2012-12-12 11:26:32 UTC
  • mfrom: (3.1.1 sid)
  • Revision ID: package-import@ubuntu.com-20121212112632-xhiuwkxuz5h0idkh
Tags: 1.3.1+hg5849-1
* Minor changes compared to 1.3.0 but included several bug fixes.
* See http://www.openwalnut.org/versions/4

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
#include "../common/WBoundingBox.h"
37
37
#include "../common/WProperties.h"
38
38
#include "WDataSet.h"
39
 
#include "WExportDataHandler.h"
 
39
 
40
40
 
41
41
// forward declarations
42
42
class WFiber;
44
44
/**
45
45
 * Represents a simple set of WFibers.
46
46
 */
47
 
class OWDATAHANDLER_EXPORT WDataSetFibers : public WDataSet // NOLINT
 
47
class WDataSetFibers : public WDataSet // NOLINT
48
48
{
49
49
public:
50
 
 
51
50
    // some type alias for the used arrays.
 
51
    /**
 
52
     * Pointer to dataset.
 
53
     */
 
54
    typedef boost::shared_ptr< WDataSetFibers > SPtr;
 
55
 
 
56
    /**
 
57
     * Pointer to const dataset.
 
58
     */
 
59
    typedef boost::shared_ptr< const WDataSetFibers > ConstSPtr;
52
60
 
53
61
    /**
54
62
     * List of vertex coordinates in term of components of vertices.
82
90
    {
83
91
    friend class WDataSetFibers;
84
92
    public:
85
 
 
86
93
        /**
87
94
         * different kinds of color arrays can be used in this class. This enum defines their possible types.
88
95
         */
131
138
        };
132
139
 
133
140
    protected:
134
 
 
135
141
        /**
136
142
         * Sets the color array for this item.
137
143
         *
363
369
    WFiber operator[]( size_t numTract ) const;
364
370
 
365
371
protected:
366
 
 
367
372
    /**
368
373
     * The prototype as singleton.
369
374
     */