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 242B

12345678910111213141516
  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. , _lastResult(SCARD_S_SUCCESS)
  9. {
  10. }
  11. const std::string ScReader::getName() const
  12. {
  13. return _name;
  14. }