~ubuntu-branches/ubuntu/lucid/lastfm/lucid

« back to all changes in this revision

Viewing changes to src/libUnicorn/WebService/Request.h

  • Committer: Bazaar Package Importer
  • Author(s): Devid Filoni
  • Date: 2008-07-14 16:46:20 UTC
  • mfrom: (1.2.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20080714164620-cattx7c83ihhnk4l
Tags: upstream-1.5.1.31879.dfsg
ImportĀ upstreamĀ versionĀ 1.5.1.31879.dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
382
382
#define CLASSM( method, Name ) class Name##Request : public ActionRequest { \
383
383
        public: Name##Request( Track track ) : ActionRequest( method, Type##Name ) { setArtist( track.artist() ); setTitle( track.title() ); } \
384
384
        public: Name##Request( TrackInfo track ) : ActionRequest( method, Type##Name ) { setArtist( track.artist() ); setTitle( track.track() ); } }
385
 
    CLASSM( "removeRecentlyListenedTrack", UnListen );
386
385
    CLASSM( "loveTrack", Love );
387
386
    CLASSM( "unLoveTrack", UnLove );
388
387
    CLASSM( "banTrack", Ban );