MeshKit  1.0
AF2RuleNewEdge.cpp
Go to the documentation of this file.
00001 #include "meshkit/AF2RuleNewEdge.hpp"
00002 
00003 AF2RuleNewEdge::AF2RuleNewEdge(int firstIndex, int secondIndex)
00004 {
00005   a = firstIndex;
00006   b = secondIndex;
00007 }
00008 
00009 int AF2RuleNewEdge::getFirstIndex() const
00010 {
00011   return a;
00012 }
00013 
00014 int AF2RuleNewEdge::getSecondIndex() const
00015 {
00016   return b;
00017 }
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines