class DALine; class DATooth { public: DATooth( DALine* l ); ~DATooth(void); DATooth* nextTooth() { return next; }; DATooth* prevTooth() { return prev; }; void prependTooth( DATooth* t ); DALine* getLine() { return line; }; void setLine( DALine* l ) { line = l; }; private: DALine* line; DATooth* prev; DATooth* next; };
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 6297 | Sam Stafford |
Work so far on "deep annotate". Been getting a lot of questions on this lately from other people working on the same thing; might as well pool efforts. |