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

ScResult.h 324B

123456789101112131415161718192021222324
  1. //
  2. // Created by robin on 6/27/15.
  3. //
  4. #ifndef LIBPCSC_CPPTOOLS_SCRESULT_H
  5. # define LIBPCSC_CPPTOOLS_SCRESULT_H
  6. #include "ScByteArray.h"
  7. class ScResult
  8. {
  9. public:
  10. ScResult(const ScByteArray& data);
  11. ~ScResult();
  12. protected:
  13. ScByteArray _data;
  14. };
  15. # include "ScResult.hxx"
  16. #endif //LIBPCSC_CPPTOOLS_SCRESULT_H