1234567891011121314151617181920212223242526272829 |
- //
- // Created by robin on 6/27/15.
- //
-
- #ifndef LIBPCSC_CPPTOOLS_SCBYTEARRAY_H
- # define LIBPCSC_CPPTOOLS_SCBYTEARRAY_H
-
- # include <winscard.h>
-
- class ScByteArray {
-
- public:
- inline ScByteArray(BYTE* const data, const DWORD size);
-
- inline ScByteArray(const ScByteArray& data);
-
- inline DWORD getSize() const;
-
- inline BYTE* getData() const;
-
- private:
- DWORD _size;
-
- BYTE* _data;
- };
-
- # include "ScByteArray.hxx"
-
- #endif //LIBPCSC_CPPTOOLS_SCBYTEARRAY_H
|