00001 00002 // 00003 // This file is part of the MADELINE 2 program 00004 // written by Edward H. Trager and Ritu Khanna 00005 // Copyright (c) 2005 by the 00006 // Regents of the University of Michigan. 00007 // All Rights Reserved. 00008 // 00009 // The latest version of this program is available from: 00010 // 00011 // http://eyegene.ophthy.med.umich.edu/madeline/ 00012 // 00013 // Released under the GNU General Public License. 00014 // A copy of the GPL is included in the distribution 00015 // package of this software, or see: 00016 // 00017 // http://www.gnu.org/copyleft/ 00018 // 00019 // ... for licensing details. 00020 // 00022 // 00023 // BufferSizes.h 00024 // 00025 // 2005.04.15.ET.RK 00026 // 00027 00028 00029 #ifndef BUFFERSIZES_INCLUDED 00030 #define BUFFERSIZES_INCLUDED 00031 00032 enum BUFFERSIZE{ LARGE_STRING_BUFFER_SIZE=2048, GENERAL_STRING_BUFFER_SIZE=1024 , MEDIUM_STRING_BUFFER_SIZE=512, SMALL_STRING_BUFFER_SIZE=256 }; 00033 00034 #endif