Fix source file permissions in the project
[platform/core/security/tef-simulator.git] / simulatordaemon / inc / ClientCommands / CommandOpenSession.h
1 /*
2  * =====================================================================================
3  *
4  *       Filename:  CommandOpenSession.h
5  *
6  *    Description:  CommandOpenSession Header file
7  *
8  *        Version:  1.0
9  *        Created:  23 April 2015 12:42:03  IST
10  *       Revision:  Original
11  *       Compiler:  gcc
12  *
13  *         Author:  CHERYL (cb), cheryl.b@samsung.com
14  *   Organization:  Samsung Electronics
15  *
16  * =====================================================================================
17  */
18
19 #ifndef COMMANDOPENSESSION_H_
20 #define COMMANDOPENSESSION_H_
21
22 /*-----------------------------------------------------------------------------
23  *  Include files
24  *-----------------------------------------------------------------------------*/
25 #include "CommandBase.h"
26
27 /*-----------------------------------------------------------------------------
28  *  Class definitions
29  *-----------------------------------------------------------------------------*/
30 class CommandOpenSession:
31     public CommandBase {
32 public:
33         OpenSessionData data;
34         CommandOpenSession(OpenSessionData data, TEEContext *TEECtx);
35         void execute();
36         virtual ~CommandOpenSession();
37 };
38
39 #endif /* COMMANDOPENSESSION_H_ */