Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
VideoLAN
medialibrary
Commits
e7b5de70
Commit
e7b5de70
authored
May 26, 2014
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move pointer types to a specific file
parent
489bef1a
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
17 deletions
+24
-17
include/IMediaLibrary.h
include/IMediaLibrary.h
+1
-17
include/Types.h
include/Types.h
+23
-0
No files found.
include/IMediaLibrary.h
View file @
e7b5de70
...
...
@@ -3,24 +3,8 @@
#include <vector>
#include <string>
#include <memory>
class
IAlbum
;
class
IAlbumTrack
;
class
IFile
;
class
ILabel
;
class
IMetadataService
;
class
IMovie
;
class
IShow
;
class
IShowEpisode
;
typedef
std
::
shared_ptr
<
IFile
>
FilePtr
;
typedef
std
::
shared_ptr
<
ILabel
>
LabelPtr
;
typedef
std
::
shared_ptr
<
IAlbum
>
AlbumPtr
;
typedef
std
::
shared_ptr
<
IAlbumTrack
>
AlbumTrackPtr
;
typedef
std
::
shared_ptr
<
IShow
>
ShowPtr
;
typedef
std
::
shared_ptr
<
IShowEpisode
>
ShowEpisodePtr
;
typedef
std
::
shared_ptr
<
IMovie
>
MoviePtr
;
#include "Types.h"
class
IMediaLibrary
{
...
...
include/Types.h
0 → 100644
View file @
e7b5de70
#ifndef TYPES_H
#define TYPES_H
#include <memory>
class
IAlbum
;
class
IAlbumTrack
;
class
IFile
;
class
ILabel
;
class
IMetadataService
;
class
IMovie
;
class
IShow
;
class
IShowEpisode
;
typedef
std
::
shared_ptr
<
IFile
>
FilePtr
;
typedef
std
::
shared_ptr
<
ILabel
>
LabelPtr
;
typedef
std
::
shared_ptr
<
IAlbum
>
AlbumPtr
;
typedef
std
::
shared_ptr
<
IAlbumTrack
>
AlbumTrackPtr
;
typedef
std
::
shared_ptr
<
IShow
>
ShowPtr
;
typedef
std
::
shared_ptr
<
IShowEpisode
>
ShowEpisodePtr
;
typedef
std
::
shared_ptr
<
IMovie
>
MoviePtr
;
#endif // TYPES_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment