00001 /**************************************************************** 00002 ** 00003 ** Definition of threatListItem class 00004 ** 00005 ****************************************************************/ 00006 00007 #ifndef THREATLIST_H 00008 #define THREATLIST_H 00009 #include "tcastypes.h" 00010 00016 class threatListItem 00017 { 00018 public: 00030 threatListItem(threatType t, trendDir d, int a, int i, int x, int y, int ra=0, int va=0){type = t;dir = d; relAlt = a; id = i;xPos = x; yPos = y; vecangle = va; relangle = ra;} 00032 threatType type; 00034 trendDir dir; 00036 int relAlt; 00038 int id; 00040 int xPos; 00042 int yPos; 00044 int relangle; 00046 int vecangle; 00047 }; 00048 00049 #endif 00050
1.4.7