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 462B

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