You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ScReader.hxx 266B

1234567891011121314151617
  1. //
  2. // Created by robin on 6/28/15.
  3. //
  4. ScReader::ScReader(std::string name)
  5. : _name(name)
  6. , _card(nullptr)
  7. , _proto(nullptr)
  8. , _sendPci(nullptr)
  9. , _lastResult(SCARD_S_SUCCESS)
  10. {
  11. }
  12. const std::string ScReader::getName() const
  13. {
  14. return _name;
  15. }