00001 #ifndef _WINC_PLOTITEM
00002 #define _WINC_PLOTITEM
00003
00004 #include <WXP/Drawing.h>
00005
00006 namespace WXP {
00007
00013 struct PlotItem {
00014 int type;
00015 Drawing *drawing;
00016 void *data;
00017 PlotItem *next;
00018 };
00019 }
00020 #endif