[GME-commit] GMESRC/SDK/BON BONImpl.cpp,1.32,1.33 Common.h,1.5,1.6

gme-commit at list.isis.vanderbilt.edu gme-commit at list.isis.vanderbilt.edu
Fri Jun 23 20:40:44 CDT 2006


Update of /project/gme-repository/GMESRC/SDK/BON
In directory escher:/tmp/cvs-serv26785

Modified Files:
	BONImpl.cpp Common.h 
Log Message:
Adding new LineEnd types


CVS User: Zoltan Molnar, ISIS (zolmol)

Index: Common.h
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/Common.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Common.h	3 Feb 2004 10:53:05 -0000	1.5
--- Common.h	23 Jun 2006 19:40:38 -0000	1.6
***************
*** 256,260 ****
  		LET_EmptyDiamond,
  		LET_EmptyApex,
! 		LET_EmptyBullet
  	};
  
--- 256,262 ----
  		LET_EmptyDiamond,
  		LET_EmptyApex,
! 		LET_EmptyBullet,
! 		LET_LeftHalfArrow,
! 		LET_RightHalfArrow
  	};
  

Index: BONImpl.cpp
===================================================================
RCS file: /project/gme-repository/GMESRC/SDK/BON/BONImpl.cpp,v
retrieving revision 1.32
retrieving revision 1.33
diff -C2 -d -r1.32 -r1.33
*** BONImpl.cpp	6 Jan 2006 19:23:09 -0000	1.32
--- BONImpl.cpp	23 Jun 2006 19:40:38 -0000	1.33
***************
*** 328,331 ****
--- 328,339 ----
  			return true;
  		}
+ 		if ( strValue == "left half arrow" ) {
+ 			eType = LET_LeftHalfArrow;
+ 			return true;
+ 		}
+ 		if ( strValue == "right half arrow" ) {
+ 			eType = LET_RightHalfArrow;
+ 			return true;
+ 		}
  		return false;
  	}
***************
*** 342,345 ****
--- 350,355 ----
  			case LET_EmptyApex : return "empty apex";
  			case LET_EmptyBullet : return "empty bullet";
+ 			case LET_LeftHalfArrow : return "left half arrow";
+ 			case LET_RightHalfArrow : return "right half arrow";
  		}
  		return "butt";



More information about the GME-commit mailing list