MeshKit  1.0
AF2RuleNewEdge.hpp
Go to the documentation of this file.
00001 /*
00002  * AF2RuleNewEdge.hpp
00003  *
00004  * A specification of a new edge that would be created by applying some
00005  * 2-dimensional advancing front rule.
00006  */
00007 #ifndef AF2RULENEWEDGE_HPP
00008 #define AF2RULENEWEDGE_HPP
00009 
00010 class AF2RuleNewEdge
00011 {
00012   private:
00013 
00014     int a, b;
00015 
00016   public:
00017 
00032     AF2RuleNewEdge(int firstIndex, int secondIndex);
00033 
00042     int getFirstIndex() const;
00043 
00052     int getSecondIndex() const;
00053 };
00054 
00055 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines