KvParseParameter.cpp 762 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Author: Patrick-Christopher Mattulat
  3. * Company: Lynar Studios
  4. * E-Mail: webmaster@lynarstudios.com
  5. * Created: 2023-02-05
  6. * Changed: 2023-02-05
  7. *
  8. * */
  9. #include <ls-std/io/kv/KvParseParameter.hpp>
  10. ls::std::io::KvParseParameter::KvParseParameter() = default;
  11. ls::std::io::KvParseParameter::~KvParseParameter() = default;
  12. ::std::string::size_type ls::std::io::KvParseParameter::getIndex() const
  13. {
  14. return this->index;
  15. }
  16. ::std::string ls::std::io::KvParseParameter::getLine()
  17. {
  18. return this->line;
  19. }
  20. void ls::std::io::KvParseParameter::setIndex(const ::std::string::size_type &_index)
  21. {
  22. this->index = _index;
  23. }
  24. void ls::std::io::KvParseParameter::setLine(const ::std::string &_line)
  25. {
  26. this->line = _line;
  27. }