1234567891011121314151617181920212223 |
- //
- // Created by robin on 6/27/15.
- //
-
- #ifndef LIBPCSC_CPPTOOLS_SCCOMMAND_H
- # define LIBPCSC_CPPTOOLS_SCCOMMAND_H
-
- # include "ScByteArray.h"
-
- class ScCommand {
-
- public:
- virtual ~ScCommand();
-
- virtual ScByteArray getData() const = 0;
-
- static int hexToDec(const char c);
-
- };
-
- # include "ScCommand.hxx"
-
- #endif //LIBPCSC_CPPTOOLS_SCCOMMAND_H
|