/* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ /*************************************************************************** * ListNodeOfCTriangle.h * * Thu Jun 29 20:46:39 2006 * Copyright 2006 N. Sharjith * sharjith@gmail.com ****************************************************************************/ #ifndef _LISTNODEOFCTRIANGLE_H #define _LISTNODEOFCTRIANGLE_H #include "VKGeom.h" #include "Triangle.h" class CListOfCTriangle; class VKGEOM_API CListNodeOfCTriangle { friend class CListOfCTriangle; friend class CListIteratorOfListOfCTriangle; public: CListNodeOfCTriangle(const CTriangle&); CTriangle GetData() const; virtual ~CListNodeOfCTriangle(); bool operator==(CListNodeOfCTriangle& rhs); bool operator!=(CListNodeOfCTriangle& rhs); private: CTriangle data; CListNodeOfCTriangle* nextPtr; }; #endif /* _LISTNODEOFCTRIANGLE_H */
By viewing downloads associated with this article you agree to the Terms of use and the article's licence.
If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)
Math Primers for Programmers