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.

ScByteArray.h 497B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // Created by robin on 6/27/15.
  3. //
  4. #ifndef LIBPCSC_CPPTOOLS_SCBYTEARRAY_H
  5. # define LIBPCSC_CPPTOOLS_SCBYTEARRAY_H
  6. # include <winscard.h>
  7. class ScByteArray {
  8. public:
  9. inline ScByteArray();
  10. inline ScByteArray(BYTE* const data, const DWORD size);
  11. inline ScByteArray(const ScByteArray& data);
  12. inline DWORD getSize() const;
  13. inline BYTE* getData() const;
  14. private:
  15. DWORD _size;
  16. BYTE* _data;
  17. };
  18. # include "ScByteArray.hxx"
  19. #endif //LIBPCSC_CPPTOOLS_SCBYTEARRAY_H