Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ScCommand.h 310B

123456789101112131415161718192021
  1. //
  2. // Created by robin on 6/27/15.
  3. //
  4. #ifndef LIBPCSC_CPPTOOLS_SCCOMMAND_H
  5. # define LIBPCSC_CPPTOOLS_SCCOMMAND_H
  6. # include <string>
  7. class ScCommand {
  8. public:
  9. virtual ~ScCommand();
  10. virtual const std::string getData() const = 0;
  11. };
  12. # include "ScCommand.hxx"
  13. #endif //LIBPCSC_CPPTOOLS_SCCOMMAND_H