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.

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