summaryrefslogtreecommitdiff
path: root/src/lastfm_service.h
diff options
context:
space:
mode:
authorAndrzej Rybczak <electricityispower@gmail.com>2012-09-13 22:09:39 +0200
committerAndrzej Rybczak <electricityispower@gmail.com>2012-09-13 22:09:59 +0200
commit58a26b1e18057c7cbd1868db8457d183b0a24300 (patch)
tree89e591c3f851d11f618122afe2066c34e686756f /src/lastfm_service.h
parentbb5d72d55891da403f795dbc7bef7852c62f5542 (diff)
adjust indentation of remaining classes in headers
Diffstat (limited to 'src/lastfm_service.h')
-rw-r--r--src/lastfm_service.h28
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