c0d520825c7bb15808da089048a23dc2b69024dd
[platform/framework/web/crosswalk-tizen.git] /
1 // Copyright 2014 Samsung Electronics. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef EWK_WRT_PRIVATE_H
6 #define EWK_WRT_PRIVATE_H
7
8 #include <string>
9
10 struct Ewk_Wrt_Message_Data {
11   std::string type;
12   std::string value;
13   std::string id;
14   std::string reference_id;
15
16   Ewk_Wrt_Message_Data();
17   ~Ewk_Wrt_Message_Data();
18   const char* GetType() const;
19   void SetType(const char* val);
20   const char* GetValue() const;
21   void SetValue(const char* val);
22   const char* GetId() const;
23   void SetId(const char* val);
24   const char* GetReferenceId() const;
25   void SetReferenceId(const char* val);
26 };
27
28 #endif // EWK_WRT_PRIVATE_H