Revision | 74b9db1b74df8a420b7340a182345b0e3609bd39 (tree) |
---|---|
Zeit | 2012-03-21 00:41:06 |
Autor | qwerty2501 <qwerty2501@user...> |
Commiter | qwerty2501 |
cookie処理実装途中
@@ -22,17 +22,17 @@ Void CCookie::SetCookieValue(const MString &cookieValue){ | ||
22 | 22 | |
23 | 23 | } |
24 | 24 | |
25 | -const MString &CCookie::GetDomein(){ | |
25 | +const MString &CCookie::GetDomein()const{ | |
26 | 26 | |
27 | 27 | return this->domein; |
28 | 28 | } |
29 | 29 | |
30 | -const MString &CCookie::GetName(){ | |
30 | +const MString &CCookie::GetName()const{ | |
31 | 31 | |
32 | 32 | return this->name; |
33 | 33 | } |
34 | 34 | |
35 | -const MString &CCookie::GetCookieValue(){ | |
35 | +const MString &CCookie::GetCookieValue()const{ | |
36 | 36 | |
37 | 37 | return this->cookieValue; |
38 | 38 | } |
@@ -29,11 +29,11 @@ public: | ||
29 | 29 | // |
30 | 30 | public: |
31 | 31 | |
32 | - const MString &GetDomein(); | |
32 | + const MString &GetDomein()const; | |
33 | 33 | |
34 | - const MString &GetName(); | |
34 | + const MString &GetName()const; | |
35 | 35 | |
36 | - const MString &GetCookieValue(); | |
36 | + const MString &GetCookieValue()const; | |
37 | 37 | |
38 | 38 | }; |
39 | 39 |
@@ -31,18 +31,18 @@ Void CCookieGetResult::SetResultCode(resultcode::ResultCode resultCode){ | ||
31 | 31 | } |
32 | 32 | |
33 | 33 | |
34 | -Bool CCookieGetResult::IsFound(){ | |
34 | +Bool CCookieGetResult::IsFound()const{ | |
35 | 35 | |
36 | 36 | |
37 | 37 | return this->findFlag; |
38 | 38 | } |
39 | 39 | |
40 | -browsertype::BrowserType CCookieGetResult::GetBrowserType(){ | |
40 | +browsertype::BrowserType CCookieGetResult::GetBrowserType()const{ | |
41 | 41 | |
42 | 42 | return this->browserType; |
43 | 43 | } |
44 | 44 | |
45 | -resultcode::ResultCode CCookieGetResult::GetResultCode(){ | |
45 | +resultcode::ResultCode CCookieGetResult::GetResultCode()const{ | |
46 | 46 | |
47 | 47 | return this->resultCode; |
48 | 48 |
@@ -34,11 +34,11 @@ public: | ||
34 | 34 | //ゲッター |
35 | 35 | // |
36 | 36 | public: |
37 | - Bool IsFound(); | |
37 | + Bool IsFound()const; | |
38 | 38 | |
39 | - browsertype::BrowserType GetBrowserType(); | |
39 | + browsertype::BrowserType GetBrowserType()const; | |
40 | 40 | |
41 | - resultcode::ResultCode GetResultCode(); | |
41 | + resultcode::ResultCode GetResultCode()const; | |
42 | 42 | |
43 | 43 | public: |
44 | 44 |