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.

ScCommand.h 351B

1234567891011121314151617181920212223
  1. //
  2. // Created by robin on 6/27/15.
  3. //
  4. #ifndef LIBPCSC_CPPTOOLS_SCCOMMAND_H
  5. # define LIBPCSC_CPPTOOLS_SCCOMMAND_H
  6. # include "ScByteArray.h"
  7. class ScCommand {
  8. public:
  9. virtual ~ScCommand();
  10. virtual ScByteArray getData() const = 0;
  11. static int hexToDec(const char c);
  12. };
  13. # include "ScCommand.hxx"
  14. #endif //LIBPCSC_CPPTOOLS_SCCOMMAND_H