Card.h 509 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #pragma once
  2. #include <list>
  3. using namespace std;
  4. struct READERINFO{
  5. double x;
  6. double y;
  7. double dist;
  8. };
  9. class CCard
  10. {
  11. public:
  12. CCard(void);
  13. virtual ~CCard(void);
  14. LONG64 CardId;
  15. int CardType;
  16. LONG64 lTime;
  17. int Power;
  18. int RangingType;
  19. int Acceleration;
  20. double Distance;
  21. WORD Timestamp;
  22. WORD ReaderId;
  23. WORD ReaderTimestamp;
  24. int Antenna;
  25. CString strRecTime; // ½ÓÊÕʱ¼ä
  26. int X;
  27. int Y;
  28. int lastX;
  29. int lastY;
  30. STAFFER * pStaffer;
  31. VEHICLE * pVehicle;
  32. public:
  33. void getCordinate();
  34. };