You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ScApduCommand.h 327B

1234567891011121314151617181920212223242526272829
  1. //
  2. // Created by robin on 6/30/15.
  3. //
  4. #ifndef PCSC_CPPTOOLS_SCADPUCOMMAND_H
  5. # define PCSC_CPPTOOLS_SCADPUCOMMAND_H
  6. # include <string>
  7. class ScApduCommand
  8. {
  9. private:
  10. char _cla;
  11. char _ins;
  12. char _p1;
  13. char _p2;
  14. char _lc;
  15. std::string _data;
  16. char _le;
  17. };
  18. #endif //PCSC_CPPTOOLS_SCADPUCOMMAND_H