~ubuntu-branches/ubuntu/vivid/media-hub/vivid-updates

« back to all changes in this revision

Viewing changes to src/core/media/xesam.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Thomas Voß, Ubuntu daily release, thomas-voss
  • Date: 2014-09-10 21:11:02 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20140910211102-x6bhfqah5c4mqs2d
Tags: 2.0.0+14.10.20140910.2-0ubuntu1
[ Thomas Voß ]
* Bump major version to account for signature changes in public interface. 

[ Ubuntu daily release ]
* debian/libmedia-hub-common2.symbols: auto-update to released version

[ thomas-voss ]
* Get rid of custom macros and use the ones provided by dbus-cpp.
  Adjust to changes due to making org.mpris.MediaPlayer2.Player
  compliant to the spec.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2014 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU Lesser General Public License version 3,
 
6
 * as published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU Lesser General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by: Thomas Voß <thomas.voss@canonical.com>
 
17
 */
 
18
 
 
19
#ifndef XESAM_H_
 
20
#define XESAM_H_
 
21
 
 
22
#include <cstdint>
 
23
 
 
24
#include <string>
 
25
#include <vector>
 
26
 
 
27
#define DATUM(Type, Name, VType) \
 
28
    struct Type \
 
29
    {\
 
30
        static constexpr const char* name{#Name};\
 
31
        typedef VType ValueType;\
 
32
    };
 
33
 
 
34
namespace xesam
 
35
{
 
36
DATUM(Album, xesam:album, std::string)
 
37
DATUM(AlbumArtist, xesam:albumArtist, std::vector<std::string>)
 
38
DATUM(Artist, xesam:artist, std::vector<std::string>)
 
39
DATUM(AsText, xesam:asText, std::string)
 
40
DATUM(AudioBpm, xesam:audioBpm, std::int32_t)
 
41
DATUM(AutoRating, xesam:autoRating, double)
 
42
DATUM(Comment, xesam:comment, std::vector<std::string>)
 
43
DATUM(Composer, xesam:composer, std::vector<std::string>)
 
44
DATUM(ContentCreated, xesam:comment, std::string)
 
45
DATUM(DiscNumber, xesam:discNumber, std::int32_t)
 
46
DATUM(FirstUsed, xesam:firstUsed, std::string)
 
47
DATUM(Genre, xesam:genre, std::vector<std::string>)
 
48
DATUM(LastUsed, xesam:lastUsed, std::string)
 
49
DATUM(Lyricist, xesam:lyricist, std::vector<std::string>)
 
50
DATUM(Title, xesam:title, std::string)
 
51
DATUM(TrackNumber, xesam:trackNumber, std::int32_t)
 
52
DATUM(Url, xesam:url, std::string)
 
53
DATUM(UserRating, xesam:userRating, double)
 
54
}
 
55
 
 
56
#endif // XESAM_H_