00001 00002 #ifndef __LOOP_COUNTERS_H__ 00003 #define __LOOP_COUNTERS_H__ 00004 00005 #include "Point.h" 00006 00007 namespace ot { 00008 struct LoopCounters { 00009 Point currentOffset; 00010 unsigned int currentIndex; 00011 unsigned int qCounter; 00012 unsigned int pgQcounter; 00013 }; 00014 } //end namespace 00015 00016 #endif 00017