00001 /** 00002 * @file Tools/Debugging/View.cpp 00003 * 00004 * This file implements the view classes. 00005 * 00006 * @author <A href=mailto:roefer@tzi.de>Thomas Röfer</A> 00007 */ 00008 #include "View.h" 00009 00010 /* 00011 * ImageViewBase::list and FieldViewBase::list must be initialized before any 00012 * code generated by IMAGE_VIEW or FIELD_VIEW is executed. Therefore, 00013 * early initialization is forced. 00014 */ 00015 #ifdef _WIN32 00016 #pragma warning(disable:4073) 00017 #pragma init_seg(lib) 00018 #endif 00019 List<ImageViewBase*> ImageViewBase::list; 00020 List<FieldViewBase*> FieldViewBase::list;
1.3.6