// // Created by robin on 6/27/15. // #ifndef LIBPCSC_CPPTOOLS_SCBYTEARRAY_H # define LIBPCSC_CPPTOOLS_SCBYTEARRAY_H # include class ScByteArray { public: inline ScByteArray(); 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