Guest User

Untitled

a guest
May 24th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. /***************************************************************************
  2. * *
  3. * This program is free software; you can redistribute it and/or modify *
  4. * it under the terms of the GNU General Public License as published by *
  5. * the Free Software Foundation; either version 2 of the License, or *
  6. * (at your option) any later version. *
  7. * *
  8. ***************************************************************************/
  9.  
  10. #ifndef FOOTRACKLIST_HPP
  11. #define FOOTRACKLIST_HPP
  12.  
  13. #include <QList>
  14. #include <QUuid>
  15. #include <QString>
  16.  
  17. #include "footrack.hpp"
  18.  
  19. class FooTrackList : public QList<FooTrack>
  20. {
  21. QString Name;
  22. QUuid Uuid;
  23.  
  24. public:
  25. FooTrackList(QString name = "", QUuid uuid = 0);
  26.  
  27. const QUuid & uuid() { return Uuid; }
  28. const QString & name() { return Name; }
  29. void setName (const QString &name) { Name = name; }
  30. };
  31.  
  32. #endif
Add Comment
Please, Sign In to add comment