選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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