// // Created by robin on 6/27/15. // #ifndef LIBPCSC_CPPTOOLS_SCCOMMAND_H # define LIBPCSC_CPPTOOLS_SCCOMMAND_H # include class ScCommand { public: virtual ~ScCommand(); virtual const std::string getData() const = 0; }; # include "ScCommand.hxx" #endif //LIBPCSC_CPPTOOLS_SCCOMMAND_H