• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Revision74b9db1b74df8a420b7340a182345b0e3609bd39 (tree)
Zeit2012-03-21 00:41:06
Autorqwerty2501 <qwerty2501@user...>
Commiterqwerty2501

Log Message

cookie処理実装途中

Ändern Zusammenfassung

Diff

Binary files a/nlite.suo and b/nlite.suo differ
Binary files a/nlite_application/nlite_application.ico and /dev/null differ
--- a/nlite_cookie/cookie.cpp
+++ b/nlite_cookie/cookie.cpp
@@ -22,17 +22,17 @@ Void CCookie::SetCookieValue(const MString &cookieValue){
2222
2323 }
2424
25-const MString &CCookie::GetDomein(){
25+const MString &CCookie::GetDomein()const{
2626
2727 return this->domein;
2828 }
2929
30-const MString &CCookie::GetName(){
30+const MString &CCookie::GetName()const{
3131
3232 return this->name;
3333 }
3434
35-const MString &CCookie::GetCookieValue(){
35+const MString &CCookie::GetCookieValue()const{
3636
3737 return this->cookieValue;
3838 }
--- a/nlite_cookie/cookie.h
+++ b/nlite_cookie/cookie.h
@@ -29,11 +29,11 @@ public:
2929 //
3030 public:
3131
32- const MString &GetDomein();
32+ const MString &GetDomein()const;
3333
34- const MString &GetName();
34+ const MString &GetName()const;
3535
36- const MString &GetCookieValue();
36+ const MString &GetCookieValue()const;
3737
3838 };
3939
--- a/nlite_cookie/cookieGetResult.cpp
+++ b/nlite_cookie/cookieGetResult.cpp
@@ -31,18 +31,18 @@ Void CCookieGetResult::SetResultCode(resultcode::ResultCode resultCode){
3131 }
3232
3333
34-Bool CCookieGetResult::IsFound(){
34+Bool CCookieGetResult::IsFound()const{
3535
3636
3737 return this->findFlag;
3838 }
3939
40-browsertype::BrowserType CCookieGetResult::GetBrowserType(){
40+browsertype::BrowserType CCookieGetResult::GetBrowserType()const{
4141
4242 return this->browserType;
4343 }
4444
45-resultcode::ResultCode CCookieGetResult::GetResultCode(){
45+resultcode::ResultCode CCookieGetResult::GetResultCode()const{
4646
4747 return this->resultCode;
4848
--- a/nlite_cookie/cookieGetResult.h
+++ b/nlite_cookie/cookieGetResult.h
@@ -34,11 +34,11 @@ public:
3434 //ゲッター
3535 //
3636 public:
37- Bool IsFound();
37+ Bool IsFound()const;
3838
39- browsertype::BrowserType GetBrowserType();
39+ browsertype::BrowserType GetBrowserType()const;
4040
41- resultcode::ResultCode GetResultCode();
41+ resultcode::ResultCode GetResultCode()const;
4242
4343 public:
4444