mirror of
https://github.com/HenkKalkwater/harbour-sailfin.git
synced 2024-11-15 22:15:18 +00:00
Chris Josten
b699f6e74d
- PlaybackManager now takes ownership of set items - PlaybackManager can play items just by their itemId, avoids useless item creation on the QML side of things. - Allow calling Jellyfin::registerTypes with a different URI - Minor code cleanup
17 lines
382 B
C++
17 lines
382 B
C++
#ifndef JELLYFIN_H
|
|
#define JELLYFIN_H
|
|
|
|
#include <QtQml>
|
|
|
|
#include "JellyfinQt/jellyfinapiclient.h"
|
|
#include "JellyfinQt/jellyfinapimodel.h"
|
|
#include "JellyfinQt/jellyfinitem.h"
|
|
#include "JellyfinQt/serverdiscoverymodel.h"
|
|
#include "JellyfinQt/jellyfinplaybackmanager.h"
|
|
|
|
namespace Jellyfin {
|
|
void registerTypes(const char *uri = "nl.netsoj.chris.Jellyfin");
|
|
}
|
|
|
|
#endif // JELLYFIN_H
|