diff options
| author | Simon Robertshaw <simon@hardwired.org.uk> | 2013-03-16 17:45:18 (GMT) |
|---|---|---|
| committer | Simon Robertshaw <simon@hardwired.org.uk> | 2013-03-16 17:45:18 (GMT) |
| commit | f05044ab68e51ce9c374f6af09284051efcda449 (patch) | |
| tree | 6ae35ed5f6f3395593fc0d2c90780d8162f302e7 /src/profile/ProfileActivity.h | |
| parent | d383d6d7e5e1d3ca0856c02ebbcea5e9b8b2ff4e (diff) | |
| download | powder-f05044ab68e51ce9c374f6af09284051efcda449.zip powder-f05044ab68e51ce9c374f6af09284051efcda449.tar.gz | |
APIRequest, Aync methods for client, Profile edit/viewer (WIP)
Diffstat (limited to 'src/profile/ProfileActivity.h')
| -rw-r--r-- | src/profile/ProfileActivity.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/profile/ProfileActivity.h b/src/profile/ProfileActivity.h new file mode 100644 index 0000000..a4648e9 --- /dev/null +++ b/src/profile/ProfileActivity.h @@ -0,0 +1,17 @@ +#ifndef PROFILEACTIVITY_H_ +#define PROFILEACTIVITY_H_ + +#include <string> +#include "Activity.h" +#include "client/requestbroker/RequestListener.h" +#include "interface/Window.h" + +class ProfileActivity: public WindowActivity, public RequestListener { +public: + ProfileActivity(std::string username); + virtual ~ProfileActivity(); + virtual void OnResponseReady(void * userDataPtr); + virtual void OnDraw(); +}; + +#endif /* PROFILEACTIVITY_H_ */ |
