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.

ScBasicCommand.h 434B

12345678910111213141516171819202122232425
  1. //
  2. // Created by robin on 6/27/15.
  3. //
  4. #ifndef LIBPCSC_CPPTOOLS_SCBASICCOMMAND_H
  5. # define LIBPCSC_CPPTOOLS_SCBASICCOMMAND_H
  6. # include <bits/stringfwd.h>
  7. # include "ScCommand.h"
  8. class ScBasicCommand : public ScCommand {
  9. public:
  10. ScBasicCommand(const std::string& data);
  11. virtual ScByteArray getData() const override;
  12. private:
  13. ScByteArray _data;
  14. };
  15. # include "ScCommand.hxx"
  16. #endif //LIBPCSC_CPPTOOLS_SCBASICCOMMAND_H