ElementChemistryTable.h 429 B

123456789101112131415161718192021222324252627282930
  1. #pragma once
  2. #include "CSQLiteTable.h"
  3. namespace OTSSQLITE
  4. {
  5. //using namespace OTSSQLITE;
  6. class CElementChemistryTable : public CSQLiteTable
  7. {
  8. public:
  9. enum class ColumnID
  10. {
  11. INVALID = -1,
  12. MIN = 0,
  13. N_XRAY_INDEX = 0,
  14. N_FIELD_ID = 1,
  15. N_ELEMENT_ID = 2,
  16. N_ELEMENT_TOTAL = 3,
  17. S_NAME = 4,
  18. F_PERCENTAGE = 5,
  19. MAX = 5
  20. };
  21. public:
  22. CElementChemistryTable();
  23. ~CElementChemistryTable();
  24. };
  25. }