diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-13 22:09:39 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-13 22:09:59 +0200 |
commit | 58a26b1e18057c7cbd1868db8457d183b0a24300 (patch) | |
tree | 89e591c3f851d11f618122afe2066c34e686756f /src/lastfm_service.h | |
parent | bb5d72d55891da403f795dbc7bef7852c62f5542 (diff) |
adjust indentation of remaining classes in headers
Diffstat (limited to 'src/lastfm_service.h')
-rw-r--r-- | src/lastfm_service.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/lastfm_service.h b/src/lastfm_service.h index e49c7685..14cb9936 100644 --- a/src/lastfm_service.h +++ b/src/lastfm_service.h @@ -41,16 +41,16 @@ struct LastfmService virtual bool checkArgs(const Args &args) = 0; virtual void colorizeOutput(NC::Scrollpad &w) = 0; - protected: - virtual bool actionFailed(const std::string &data); - - virtual bool parse(std::string &data) = 0; - virtual void postProcess(std::string &data); - - virtual const char *methodName() = 0; - - static const char *baseURL; - static const char *msgParseFailed; +protected: + virtual bool actionFailed(const std::string &data); + + virtual bool parse(std::string &data) = 0; + virtual void postProcess(std::string &data); + + virtual const char *methodName() = 0; + + static const char *baseURL; + static const char *msgParseFailed; }; struct ArtistInfo : public LastfmService @@ -60,10 +60,10 @@ struct ArtistInfo : public LastfmService virtual bool checkArgs(const Args &args); virtual void colorizeOutput(NC::Scrollpad &w); - protected: - virtual bool parse(std::string &data); - - virtual const char *methodName() { return "artist.getinfo"; } +protected: + virtual bool parse(std::string &data); + + virtual const char *methodName() { return "artist.getinfo"; } }; #endif // HAVE_CURL_CURL_H |