Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
medialibrary
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mehdi Sabwat
medialibrary
Commits
e62737d3
Commit
e62737d3
authored
3 years ago
by
Mehdi Sabwat
Browse files
Options
Downloads
Patches
Plain Diff
IAlbumTrack: remove unused header
parent
24ae30be
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
include/medialibrary/IAlbumTrack.h
+0
-60
0 additions, 60 deletions
include/medialibrary/IAlbumTrack.h
include/medialibrary/meson.build
+0
-1
0 additions, 1 deletion
include/medialibrary/meson.build
test/samples/Tester.h
+0
-1
0 additions, 1 deletion
test/samples/Tester.h
with
0 additions
and
62 deletions
include/medialibrary/IAlbumTrack.h
deleted
100644 → 0
+
0
−
60
View file @
24ae30be
/*****************************************************************************
* Media Library
*****************************************************************************
* Copyright (C) 2015-2019 Hugo Beauzée-Luyssen, Videolabs, VideoLAN
*
* Authors: Hugo Beauzée-Luyssen <hugo@beauzee.fr>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/
#ifndef IALBUMTRACK_H
#define IALBUMTRACK_H
#include
"IMediaLibrary.h"
namespace
medialibrary
{
class
IAlbumTrack
{
public:
virtual
~
IAlbumTrack
()
=
default
;
virtual
int64_t
id
()
const
=
0
;
/**
* @brief artist Returns the artist, as tagged in the media.
* This can be different from the associated media's artist.
* For instance, in case of a featuring, Media::artist() might return
* "Artist 1", while IAlbumTrack::artist() might return something like
* "Artist 1 featuring Artist 2 and also artist 3 and a whole bunch of people"
* @return
*/
virtual
ArtistPtr
artist
()
const
=
0
;
virtual
int64_t
artistId
()
const
=
0
;
virtual
GenrePtr
genre
()
=
0
;
virtual
int64_t
genreId
()
const
=
0
;
virtual
unsigned
int
trackNumber
()
const
=
0
;
virtual
AlbumPtr
album
()
=
0
;
virtual
int64_t
albumId
()
const
=
0
;
/**
* @return Which disc this tracks appears on (or 0 if unspecified)
*/
virtual
unsigned
int
discNumber
()
const
=
0
;
};
}
#endif // IALBUMTRACK_H
This diff is collapsed.
Click to expand it.
include/medialibrary/meson.build
+
0
−
1
View file @
e62737d3
medialib_headers
=
[
'IAlbum.h'
,
'IAlbumTrack.h'
,
'IArtist.h'
,
'IAudioTrack.h'
,
'IBookmark.h'
,
...
...
This diff is collapsed.
Click to expand it.
test/samples/Tester.h
+
0
−
1
View file @
e62737d3
...
...
@@ -32,7 +32,6 @@
#include
"medialibrary/IAlbum.h"
#include
"medialibrary/IArtist.h"
#include
"medialibrary/IMedia.h"
#include
"medialibrary/IAlbumTrack.h"
#include
"medialibrary/IAudioTrack.h"
#include
"medialibrary/IVideoTrack.h"
#include
"medialibrary/IGenre.h"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment