universallistmodelbase.cpp 1.3 KB

1234567891011121314151617181920212223242526272829
  1. /*
  2. * MIT License
  3. *
  4. * Copyright (c) 2017 Alexey Edelev <semlanik@gmail.com>
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy of this
  7. * software and associated documentation files (the "Software"), to deal in the Software
  8. * without restriction, including without limitation the rights to use, copy, modify,
  9. * merge, publish, distribute, sublicense, and/or sell copies of the Software, and
  10. * to permit persons to whom the Software is furnished to do so, subject to the following
  11. * conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in all copies
  14. * or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  17. * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  18. * PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
  19. * FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
  20. * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  21. * DEALINGS IN THE SOFTWARE.
  22. */
  23. #include "universallistmodelbase.h"
  24. UniversalListModelBase::UniversalListModelBase(QObject *parent) : QAbstractListModel(parent)
  25. {
  26. }