aboutsummaryrefslogtreecommitdiffstats
path: root/src/request.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/request.hpp')
-rw-r--r--src/request.hpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/request.hpp b/src/request.hpp
index 6b2bda1..073dd27 100644
--- a/src/request.hpp
+++ b/src/request.hpp
@@ -19,10 +19,13 @@
#include <string>
#include <vector>
+#include <memory>
namespace wm
{
+class WMClient;
+
enum Task
{
TASK_ALLOCATE,
@@ -47,7 +50,8 @@ struct WMTrigger
struct WMAction
{
- std::string appid;
+ unsigned req_num;
+ std::shared_ptr<WMClient> client;
std::string role;
std::string area;
TaskVisible visible;