// // Created by robin on 6/27/15. // #ifndef LIBPCSC_CPPTOOLS_SCBASICCOMMAND_H # define LIBPCSC_CPPTOOLS_SCBASICCOMMAND_H # include # include "ScCommand.h" class ScBasicCommand : public ScCommand { public: ScBasicCommand(const std::string& data); virtual ~ScBasicCommand(); virtual const std::string getData() const override; private: std::string _data; }; # include "ScCommand.hxx" #endif //LIBPCSC_CPPTOOLS_SCBASICCOMMAND_H