@EEItem.h 638 B

123456789101112131415161718
  1. /******************************************************************************/
  2. /******************************************************************************/
  3. class EEItem
  4. {
  5. bool opened;
  6. byte flag; // ELM_FLAG
  7. ELM_TYPE type;
  8. ImagePtr icon;
  9. Str base_name, full_name;
  10. EEItem *parent;
  11. Memx<EEItem> children;
  12. public:
  13. EEItem();
  14. };
  15. /******************************************************************************/
  16. /******************************************************************************/
  17. /******************************************************************************/