1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-17 11:30:49 +02:00

* Added TrackData typedefs.

This commit is contained in:
Christian Muehlhaeuser
2013-05-16 11:27:19 +02:00
parent 176056f97d
commit 06a46daa0b

View File

@@ -44,6 +44,7 @@ namespace Tomahawk
class Query; class Query;
class Result; class Result;
class Track; class Track;
class TrackData;
class Source; class Source;
class DynamicControl; class DynamicControl;
class GeneratorInterface; class GeneratorInterface;
@@ -60,6 +61,8 @@ namespace Tomahawk
typedef QWeakPointer<Result> result_wptr; typedef QWeakPointer<Result> result_wptr;
typedef QSharedPointer<Track> track_ptr; typedef QSharedPointer<Track> track_ptr;
typedef QWeakPointer<Track> track_wptr; typedef QWeakPointer<Track> track_wptr;
typedef QSharedPointer<TrackData> trackdata_ptr;
typedef QWeakPointer<TrackData> trackdata_wptr;
typedef QSharedPointer<Source> source_ptr; typedef QSharedPointer<Source> source_ptr;
typedef QSharedPointer<Artist> artist_ptr; typedef QSharedPointer<Artist> artist_ptr;
typedef QWeakPointer<Artist> artist_wptr; typedef QWeakPointer<Artist> artist_wptr;