defuze.me
Client
|
00001 /************************************************************************** 00002 ** defuze.me Epitech Innovative Project 00003 ** 00004 ** Copyright 2010-2011 00005 ** Athena Calmettes - Jocelyn De La Rosa - Francois Gaillard 00006 ** Adrien Jarthon - Alexandre Moore - Luc Peres - Arnaud Sellier 00007 ** 00008 ** All rights reserved. 00009 **************************************************************************/ 00010 00011 #ifndef LASTFMPLUGIN_HPP 00012 #define LASTFMPLUGIN_HPP 00013 00014 #include "lastfmwidget.hpp" 00015 #include "staticplugin.hpp" 00016 00017 namespace Lastfm 00018 { 00022 class LastfmPlugin : public StaticPlugin 00023 { 00024 public: 00025 LastfmPlugin(); 00026 void init(); 00027 00028 private: 00029 LastfmWidget *widget; 00030 }; 00031 00032 } 00033 00034 #endif // LASTFMPLUGIN_HPP