Home | History | Annotate | Download | only in style

Lines Matching defs:FillLayer

62 class FillLayer {
65 FillLayer(EFillLayerType);
66 ~FillLayer();
81 const FillLayer* next() const { return m_next; }
82 FillLayer* next() { return m_next; }
119 void setNext(FillLayer* n) { if (m_next != n) { delete m_next; m_next = n; } }
121 FillLayer& operator=(const FillLayer& o);
122 FillLayer(const FillLayer& o);
124 bool operator==(const FillLayer& o) const;
125 bool operator!=(const FillLayer& o) const
168 FillLayer() { }
170 FillLayer* m_next;