diff options
Diffstat (limited to 'src/applist.hpp')
-rw-r--r-- | src/applist.hpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/applist.hpp b/src/applist.hpp index 5da91cf..f91e7c8 100644 --- a/src/applist.hpp +++ b/src/applist.hpp @@ -33,7 +33,7 @@ typedef enum Task{ TASK_RELEASE }ResourceTask; -struct WMTriger { +struct WMTrigger { std::string appid; std::string role; std::string area; @@ -57,7 +57,7 @@ struct WMRequest WMRequest(const WMRequest &obj); unsigned seq_num; - struct WMTriger trigger; + struct WMTrigger trigger; std::vector<struct WMAction> sync_draw_req; }; @@ -89,6 +89,9 @@ public: void next(); bool haveRequest(); + struct WMTrigger getRequest(unsigned request_seq); + const std::vector<struct WMAction>& getActions(unsigned request_seq); + void client_dump(); void req_dump(); |