틀린점이 많을지도...;ㅁ;
(사실 모 카페의 압박이..--;;)
///////////////////////////
< 함수 포인터 >
먼저 이 글은 포인터에 대한 이해를 필요로 한다.
포인터에 대한 기본지식이 있다고 가정하고 글을 쓰도록 하겠다.
{
return x * y;
}
우선 이런 간단한 함수가 있다. 우리는 이 함수를 호출하기 위해 명시적으로
GetAreaEx( x, y );
이런식으로 기술해야 한다.
하지만 예를 들어 GetArea2, GetArea3, ..., GetAreaN 이런식으로 비슷한 함수가 존재하고
이를 상황에따라 다르게 호출해야 한다면 이 방식으로는 관리도 어려울 뿐더러 효율성도 떨어지고 코드량도 많이질 것이다.
또한 외부(스크립트 등)에서 어떤 특정한 함수를 호출하려 할때도 방법이 묘연할 것이다.
int (*GetArea)( int, int );
이 선언은 무엇일까?
언뜻보기에는 함수를 선언하는 것 같다.
이 선언은 함수에 대한 포인터를 선언한 것이다.
변수의 주소를 담는 포인터와 마찬가지로 함수포인터는 함수의 주소를 담는다.
int nArea = (*GetArea)( x, y ); // (*GetArea)( x, y ); 로 GetAreaEx()함수를 호출하고 리턴받은 값을 nArea에 대입
이런식으로 GetAreaEx를 호출할 수 있다.
유의할점은 *GetArea를 꼭 ()로 감싸주어야 한다는 사실이다.
빼먹으면 컴파일러가 함수포인터를 통한 호출로 인식하지 못한다.
int (*GetArea[])( int, int ) = { GetAreaEx, GetArea2, GetArea3, ..., GetAreaN };
이것은 함수포인터 배열을 정적으로 선언한 것이다. 이렇게 배열로 기능이 비슷한 함수들을 묶어놓았다.
{
int nResult = (*GetArea[nState])( x, y );
}
그리고 그 함수들을 상황에 맞게 호출한다.
만약 함수포인터를 쓰지 않는다면
{
int nResult;
switch( nState )
{
case STATE_EX:
nResult = GetAreaEx( x, y );
break;
case STATE_2:
nResult = GetArea2( x, y );
break;
case STATE_3:
nResult = GetArea3( x, y );
break;
}
}
위와 같이 기술해야 할 것이다.
두 방식의 차이점과 함수포인터의 이점을 알 수 있겠는가
그렇다면 함수포인터 배열을 동적으로 할당하는 방법은 없을까?
다음과 같은 방법으로 할당할 수 있다.
GetArea = new (int (*[N])( int, int )); // N은 배열의 크기
그리고 다음과 같이 사용하면 된다.
GetArea[1] = GetArea2;
GetArea[2] = GetArea3;
...
int nResult = (*GetArea[nState])( x, y );
물론 사용후 delete [] GetArea; 해서 해제하는것을 잊으면 안된다.
< 클래스 멤버함수의 함수포인터화 >
함수포인터는 함수의 주소값을 담는다고 했다.
그렇다면 클래스 멤버함수의 주소값도 단순히 함수포인터에 담아서 호출할 수 있지 않을까?
int (*func)();
func = CFunc::GetArea;
하지만 이 방법은 GetArea()멤버함수가 static으로 선언되었을 때만 가능하다.
static으로 선언되지 않은 멤버함수(멤버변수를 건들여야 하는 멤버함수)를 이 방법으로 담으려 한다면 컴파일 에러가 뜰 것이다.
여기에 다음과 같은 해결방법이 있다.
첫번째 방법은
{
public:
static int GetArea( CFunc * cls, int x, int y );
};
위와 같이 선언하고 호출할때 해당 인트턴스의 포인터를 넘겨줘서
{
int a = cls->GetZ();
}
이런식으로 멤버변수를 읽거나 쓸수 있겠지만 이 방식으로는 한계가 있다.
Get, Set 같은 public 외부함수로 억세스하지 않으면 private나 protected안에 선언되어 있는
멤버변수는 건드릴 수 없다.
두번째는 멤버함수의 소속을 명시화하는 방법이다.
func = CFunc::GetArea;
CFunc A;
(A.*func)( x, y );
위와 같은 방법으로 해결가능하다. 물론 호출할 인스턴스가 명확해야 한다.
세번째는 클래스 안에 함수포인터를 멤버변수로 두고 별도의 함수포인터를 컨트롤하는 멤버함수를 만드는 방법이 있다.
이 방법이 멤버함수 관리가 가장 쉬우며 효율적이다.
{
public:
int (CFunc::*pFunc)( int, int );
int GetArea( int x, int y );
void CallFunc( void ) { (this->*pFunc)( x, y ); } // CallFunc 함수호출시 자체 오버헤드를 줄이기 위해 inline
CFunc();
~CFunc() {}
};
CFunc::CFunc()
{
pFunc = GetArea;
}
int CFunc::GetArea( int x, int y )
{
return x * y;
}
위와 같다면 CallFunc(); 로 GetArea 호출이 가능해진다.
지금은 단순히 한개의 멤버함수 호출만 할뿐 의미가 없다. 이제 실제 효율적으로 쓰이게 배열을 써보자.
{
public:
int (CFunc::**pFunc)( int, int );
int GetArea( int x, int y );
void CallFunc( int nState, int x, int y ) { (this->*pFunc[nState])( x, y ); }
CFunc();
~CFunc();
};
CFunc::CFunc()
{
// init
pFunc = new (int (CFunc::*[10])( int, int )); // 동적할당, 10에는 원하는 멤버함수 갯수만큼
// 0번은 남겨둔다.
pFunc[1] = GetArea;
pFunc[2] = GetAreaEx;
pFunc[3] = GetArea2;
pFunc[4] = GetArea3;
...
pFunc[9] = GetArea9;
}
CFunc::~CFunc()
{
delete [] pFunc; // 해제
}
int CFunc::GetArea( int x, int y )
{
return x * y;
}
자, 이제 함수하나의 호출로 상황에따라 여러 멤버함수를 호출할 수 있는 기반이 마련되었다.
A.CallFunc( nState, x, y );
이렇게...
어떠한가. 함수포인터의 위력이 느껴지는가?
< STL을 이용한 함수포인터 관리 >
우리는 지금까지 함수포인터를 동적으로 배열을 할당해서 써왔다.
함수 포인터를 STL(Standard Template Library)을 써서 관리해보자.
클래스의 멤버함수의 함수포인터화에서 3번째 방법을 조금 개선시켜 보겠다.
단순히 인덱스(숫자)를 이용한 관리라면 deque정도가 괜찮을듯 싶으나,
만약 함수의 이름을 문자열로 호출하고 싶다면 map을 써볼 수 있다.
(만약 FuncCall( "GetArea", x, y ); 이런식으로 멤버함수를 호출하고 싶다면)
map은 내부적으로 트리구조를 가지고 있다.
그래서 따로 정적/동적으로 배열을 할당하지 않아도 입력된 값을 비교해서 스스로 자신의 크기를 늘린다.
mapValue["GetArea"] = 99;
이런식으로 []안에 숫자 뿐만아니라 비교할 수 있는 모든 것이 들어갈 수 있다.
먼저 map을 사용하기 위해
using namespace std;
를 선언한다. map은 표준 네임스페이스를 사용하므로 std의 이름공간을 활용한다.
map< []안에 들어갈 타입, 입력될 데이터타입, 비교 논리 > mapFunctor;
선언방법은 이렇게 되는데 비교 논리는 첫번째 인수가 클래스이고 안에 비교오퍼레이터가 있다면 생략가능하다
자, 이제 해보자.
{
bool operator() ( const char * s1, const char * s2 ) const
{
return strcmp( s1, s2 ) < 0;
}
};
class CFunc
{
public:
typedef int (CFunc::*_Func)( int, int );
map< const char *, _Func, ltstr > mapFunctor;
int GetArea( int x, int y );
void CallFunc( const char * szFuncName, int x, int y )
{
(this->*mapFunctor[szFuncName])( x, y );
}
CFunc();
~CFunc();
};
CFunc::CFunc()
{
// init
mapFunctor["GetArea"] = GetArea;
mapFunctor["GetAreaEx"] = GetAreaEx;
}
CFunc::~CFunc()
{
// map 클리어
mapFunctor.clear();
}
int CFunc::GetArea( int x, int y )
{
return x * y;
}
char * 대신 string을 사용한다면 string안에 내부적으로 비교 오퍼레이터함수가 있기 때문에
map< string, _Func > mapFunctor;
이렇게 선언하고 사용할 수 있을 것이다.
이제 A.CallFunc( "GetAreaEx", x, y ); 란 호출로 GetAreaEx를 호출할 수 있다.
이 방식은 여러가지로 응용가능한데 스킬명에 의한 화면효과 호출이라던지
C로 미리 작성된 내부 함수를 외부 스크립트로 호출한다던지 할때 유용하게 쓰일 수 있다.
(스크립트 호출일 경우 함수이름을 인덱스화 해서 deque를 쓰는게 속도상 더 유리할 듯 하다)
< Caution >
- 귀차니즘의 관계로 클래스내에 GetAreaEx, GetArea2 등과 같은 멤버함수를 모두 기술하지는 않았습니다.
- 예제 소스는 컴파일해보지 않은 소스들이므로 오타나 잘못된 점이 있을 수도 있습니다. 지적 바랍니다.
- VS 2005 에서 에러가 납니다만, 몇가지를 수정해주시면 제대로 됩니다.
- 이 강좌는 제가 그동안 겪고 배우고 또 여기저기서 수집한 자료를 바탕으로 쓴 강좌입니다. 틀린부분이 있을 수도 있으니
그런 부분은 지적 바랍니다.
- 글의 이동은 자유지만 출처는 명시해 주시기 바랍니다.
트랙백 주소 :: http://izeph.com/tt/blog/trackback/155
-
Subject: 함수 포인터 및 클래스 멤버함수의 함수포인터화
Tracked from GNUZone::강좌 2006/06/21 13:14 삭제좋은 강좌가 있어서 가져옵니다. 출처는 http://izeph.com/tt/blog/index.php?pl=155 입니다. - 스카이 -------------------------------------------------------------------------- 먼저 이 글은 ..
-
Subject: free ericsson ringtones
Tracked from free ericsson ringtones 2007/02/06 17:48 삭제http://trbasboc.siamforum.com/ <a href='http://trbasboc.siamforum.com/'>ericsson ringtones</a> <a href="http://trbasboc.siamforum.com/ "></a>
-
Subject: 흡폘땡포
Tracked from 흡폘땡포 2007/02/07 08:07 삭제흡폘땡포
-
Subject: ciao va
Tracked from ciao va 2007/02/10 09:12 삭제ciao va <a href='http://trecwawa.ifrance.com/img/index/116.htm'>ciao va</a> ciao va ciao va http://trecwawa.ifrance.com/img/index/116.htm <a href='http://trecwawa.ifrance.com/img/index/116.htm'>ciao va</a>
-
Subject: generic adipex
Tracked from generic adipex 2007/02/10 09:19 삭제generic adipex <a href='http://literatureforums.com/new-revelation/_revelation/00000199.htm'>generic adipex</a> adipex buy adipex http://literatureforums.com/new-revelation/_revelation/00000199.htm <a href='http://literatureforums.com/new-revelation/_re..
-
Subject: nextel ringtones
Tracked from nextel ringtones 2007/02/10 09:20 삭제nextel ringtones <a href='http://drontrac.bloggingmylife.com'>nextel ringtones</a> nextel ringtone nextel ringtones http://drontrac.bloggingmylife.com <a href='http://drontrac.bloggingmylife.com'>nextel ringtones</a>
-
Subject: pavano
Tracked from pavano 2007/02/14 04:10 삭제<a href='http://monc5tbas.ibelgique.com/images/small/pavano/'>pavano</a> http://monc5tbas.ibelgique.com/images/small/pavano/ <a href='http://monc5tbas.ibelgique.com/images/small/pavano/'>pavano</a> pavano pavano
-
Subject: c39
Tracked from c39 2007/02/14 04:10 삭제<a href='http://acacweq.ibelgique.com/images/small/c/'>c39</a> http://acacweq.ibelgique.com/images/small/c/ <a href='http://acacweq.ibelgique.com/images/small/c/'>c39</a> c39 c39
-
Subject: stibio-
Tracked from stibio- 2007/02/14 04:10 삭제<a href='http://basvibec.ibelgique.com/images/small/stibio/'>stibio-</a> http://basvibec.ibelgique.com/images/small/stibio/ <a href='http://basvibec.ibelgique.com/images/small/stibio/'>stibio-</a> stibio- stibio-
-
Subject: laura pausini resta
Tracked from laura pausini resta 2007/02/14 04:10 삭제<a href='http://la-sinceridad.dysycadixa.info/laura-resta/'>laura pausini resta</a> http://la-sinceridad.dysycadixa.info/laura-resta/ <a href='http://la-sinceridad.dysycadixa.info/laura-resta/'>laura pausini resta</a> laura pausini resta laura pausini r..
-
Subject: brooke, rupert
Tracked from brooke, rupert 2007/02/14 04:10 삭제<a href='http://viacco.ibelgique.com/images/small/brooke-rupert/'>brooke, rupert</a> http://viacco.ibelgique.com/images/small/brooke-rupert/ <a href='http://viacco.ibelgique.com/images/small/brooke-rupert/'>brooke, rupert</a> brooke, rupert brooke, rupert
-
Subject: la sveglia militare
Tracked from la sveglia militare 2007/02/14 04:10 삭제<a href='http://livia-lemos.dysycadixa.info/la-sveglia/'>la sveglia militare</a> http://livia-lemos.dysycadixa.info/la-sveglia/ <a href='http://livia-lemos.dysycadixa.info/la-sveglia/'>la sveglia militare</a> la sveglia militare la sveglia militare
-
Subject: plath, sylvia
Tracked from plath, sylvia 2007/02/14 04:10 삭제<a href='http://basvibec.ibelgique.com/images/small/plath-sylvia/'>plath, sylvia</a> http://basvibec.ibelgique.com/images/small/plath-sylvia/ <a href='http://basvibec.ibelgique.com/images/small/plath-sylvia/'>plath, sylvia</a> plath, sylvia plath, sylvia
-
Subject: apple snake
Tracked from apple snake 2007/02/14 04:10 삭제<a href='http://dronvirel.ifrance.com/img/styles/apple-snake.htm'>apple snake</a> http://dronvirel.ifrance.com/img/styles/apple-snake.htm <a href='http://dronvirel.ifrance.com/img/styles/apple-snake.htm'>apple snake</a> apple snake apple snake
-
Subject: zeus srl
Tracked from zeus srl 2007/02/14 04:10 삭제<a href='http://warelbec.ifrance.com/img/styles/zeus-srl.htm'>zeus srl</a> http://warelbec.ifrance.com/img/styles/zeus-srl.htm <a href='http://warelbec.ifrance.com/img/styles/zeus-srl.htm'>zeus srl</a> zeus srl zeus srl
-
Subject: n-the game
Tracked from n-the game 2007/02/16 04:28 삭제n-the game <a href='http://monc5tbas.ibelgique.com/images/small/nthe-game/'>n-the game</a> n-the game n-the game http://monc5tbas.ibelgique.com/images/small/nthe-game/ <a href='http://monc5tbas.ibelgique.com/images/small/nthe-game/'>n-the game</a>
-
Subject: mazzancolla
Tracked from mazzancolla 2007/02/16 04:28 삭제mazzancolla <a href='http://ofcofel0.ifrance.com/img/styles/mazzancolla.htm'>mazzancolla</a> mazzancolla mazzancolla http://ofcofel0.ifrance.com/img/styles/mazzancolla.htm <a href='http://ofcofel0.ifrance.com/img/styles/mazzancolla.htm'>mazzancolla</a>
-
Subject: crazy miner
Tracked from crazy miner 2007/02/16 04:29 삭제crazy miner <a href='http://basvibec.ibelgique.com/images/small/crazy-miner/'>crazy miner</a> crazy miner crazy miner http://basvibec.ibelgique.com/images/small/crazy-miner/ <a href='http://basvibec.ibelgique.com/images/small/crazy-miner/'>crazy miner</a>
-
Subject: paliano
Tracked from paliano 2007/02/16 04:30 삭제paliano <a href='http://warelbec.ifrance.com/img/styles/paliano.htm'>paliano</a> paliano paliano http://warelbec.ifrance.com/img/styles/paliano.htm <a href='http://warelbec.ifrance.com/img/styles/paliano.htm'>paliano</a>
-
Subject: scarica dvx gratis
Tracked from scarica dvx gratis 2007/02/16 04:33 삭제scarica dvx gratis <a href='http://lavori-all.sazyryhyzy.info/scarica-dvx/'>scarica dvx gratis</a> scarica dvx gratis scarica dvx gratis http://lavori-all.sazyryhyzy.info/scarica-dvx/ <a href='http://lavori-all.sazyryhyzy.info/scarica-dvx/'>scarica dvx ..
-
Subject: generic phentermine
Tracked from generic phentermine 2007/02/20 11:55 삭제<a href='http://myurl.com.tw/jd05'>generic phentermine</a> http://myurl.com.tw/jd05 <a href='http://myurl.com.tw/jd05'>buy phentermine</a> phentermine buy phentermine
-
Subject: cheap fioricet
Tracked from cheap fioricet 2007/02/20 11:55 삭제<a href='http://www.aces-abes.org/discussion/Complications/000012ac.htm'>cheap fioricet</a> http://www.aces-abes.org/discussion/Complications/000012ac.htm <a href='http://www.aces-abes.org/discussion/Complications/000012ac.htm'>buy fioricet</a> fioricet..
-
Subject: cheap tramadol
Tracked from cheap tramadol 2007/02/20 11:55 삭제<a href='http://myurl.com.tw/kscd'>cheap tramadol</a> http://myurl.com.tw/kscd <a href='http://myurl.com.tw/kscd'>buy tramadol</a> tramadol buy tramadol
-
Subject: cheap clonazepam
Tracked from cheap clonazepam 2007/02/20 11:55 삭제<a href='http://teamclydesdale.org/teamclydediscus/Teamdiscussionfeb02/000003e4.htm'>cheap clonazepam</a> http://teamclydesdale.org/teamclydediscus/Teamdiscussionfeb02/000003e4.htm <a href='http://teamclydesdale.org/teamclydediscus/Teamdiscussionfeb02/0..
-
Subject: music ringtones
Tracked from music ringtones 2007/02/20 11:56 삭제<a href='http://redirme.com/276'>music ringtones</a> http://redirme.com/276 <a href='http://redirme.com/276'>music ringtone</a> music ringtone music ringtones
-
Subject: ringtones
Tracked from ringtones 2007/02/20 11:56 삭제<a href='http://www.deklarit.com/support/forum/download.aspx?id=1778&MessageID=18407'>ringtones</a> http://www.deklarit.com/support/forum/download.aspx?id=1778&MessageID=18407 <a href='http://www.deklarit.com/support/forum/download.aspx?id=1778&MessageI..
-
Subject: generic carisoprodol
Tracked from generic carisoprodol 2007/02/20 11:56 삭제<a href='http://www.ncssma.org/_forum/0000077a.htm'>generic carisoprodol</a> http://www.ncssma.org/_forum/0000077a.htm <a href='http://www.ncssma.org/_forum/0000077a.htm'>carisoprodol</a> carisoprodol buy carisoprodol
-
Subject: filtro polarizzatore 55
Tracked from filtro polarizzatore 55 2007/02/23 07:57 삭제<a href='http://ouracvi.unas.cz/img/styles/filtro-polarizzatore.htm'>filtro polarizzatore 55</a> http://ouracvi.unas.cz/img/styles/filtro-polarizzatore.htm <a href='http://ouracvi.unas.cz/img/styles/filtro-polarizzatore.htm'>filtro polarizzatore 55</a> ..
-
Subject: exilim zoom ex-z500
Tracked from exilim zoom ex-z500 2007/02/23 07:57 삭제<a href='http://karota.czweb.org/images/small/exilim-zoom/'>exilim zoom ex-z500</a> http://karota.czweb.org/images/small/exilim-zoom/ <a href='http://karota.czweb.org/images/small/exilim-zoom/'>exilim zoom ex-z500</a> exilim zoom ex-z500 exilim zoom ex-..
-
Subject: volvo xc 70 benzina
Tracked from volvo xc 70 benzina 2007/02/23 07:57 삭제<a href='http://ouracvi.unas.cz/img/styles/volvo-.htm'>volvo xc 70 benzina</a> http://ouracvi.unas.cz/img/styles/volvo-.htm <a href='http://ouracvi.unas.cz/img/styles/volvo-.htm'>volvo xc 70 benzina</a> volvo xc 70 benzina volvo xc 70 benzina
-
Subject: abse, dannie
Tracked from abse, dannie 2007/02/23 07:57 삭제<a href='http://lekate.yi.org/library/html/abse-dannie/'>abse, dannie</a> http://lekate.yi.org/library/html/abse-dannie/ <a href='http://lekate.yi.org/library/html/abse-dannie/'>abse, dannie</a> abse, dannie abse, dannie
-
Subject: submarine titans
Tracked from submarine titans 2007/02/23 07:57 삭제<a href='http://karota.czweb.org/images/small/submarine-titans/'>submarine titans</a> http://karota.czweb.org/images/small/submarine-titans/ <a href='http://karota.czweb.org/images/small/submarine-titans/'>submarine titans</a> submarine titans submarine..
-
Subject: sarde
Tracked from sarde 2007/02/23 07:57 삭제<a href='http://lekate.yi.org/library/html/sarde/'>sarde</a> http://lekate.yi.org/library/html/sarde/ <a href='http://lekate.yi.org/library/html/sarde/'>sarde</a> sarde sarde
-
Subject: vacanze alle mauritius
Tracked from vacanze alle mauritius 2007/02/23 07:58 삭제<a href='http://ouracvi.unas.cz/img/styles/vacanze-alle.htm'>vacanze alle mauritius</a> http://ouracvi.unas.cz/img/styles/vacanze-alle.htm <a href='http://ouracvi.unas.cz/img/styles/vacanze-alle.htm'>vacanze alle mauritius</a> vacanze alle mauritius vac..
-
Subject: hitachi videocamera
Tracked from hitachi videocamera 2007/02/23 07:58 삭제<a href='http://karota.czweb.org/images/small/hitachi-videocamera/'>hitachi videocamera</a> http://karota.czweb.org/images/small/hitachi-videocamera/ <a href='http://karota.czweb.org/images/small/hitachi-videocamera/'>hitachi videocamera</a> hitachi vid..
-
Subject: aziende italiane in romania
Tracked from aziende italiane in romania 2007/02/23 07:58 삭제<a href='http://karota.czweb.org/images/small/italiane-in/'>aziende italiane in romania</a> http://karota.czweb.org/images/small/italiane-in/ <a href='http://karota.czweb.org/images/small/italiane-in/'>aziende italiane in romania</a> aziende italiane in..
-
Subject: rock ringtones
Tracked from rock ringtones 2007/02/24 12:21 삭제rock ringtones <a href='http://w0m3n-b1k1ni.blogspot.com'>rock ringtones</a> rock ringtones rock ringtones http://w0m3n-b1k1ni.blogspot.com <a href='http://w0m3n-b1k1ni.blogspot.com'>rock ringtones</a>
-
Subject: toques ringtones
Tracked from toques ringtones 2007/02/24 12:21 삭제toques ringtones <a href='http://gam39749.blogspot.com'>toques ringtones</a> toques ringtones toques ringtones http://gam39749.blogspot.com <a href='http://gam39749.blogspot.com'>toques ringtones</a>
-
Subject: telus ringtones
Tracked from telus ringtones 2007/02/24 12:21 삭제telus ringtones <a href='http://pr8asahsa.blogspot.com'>telus ringtones</a> telus ringtones telus ringtones http://pr8asahsa.blogspot.com <a href='http://pr8asahsa.blogspot.com'>telus ringtones</a>
-
Subject: generic xanax
Tracked from generic xanax 2007/02/24 12:21 삭제generic xanax <a href='http://myurl.com.tw/q1ed'>buy xanax</a> xanax buy xanax http://myurl.com.tw/q1ed <a href='http://myurl.com.tw/q1ed'>generic xanax</a>
-
Subject: generic phentermine
Tracked from generic phentermine 2007/02/24 12:21 삭제generic phentermine <a href='http://forum.socalitpro.org/download.aspx?id=6&MessageID=52'>buy phentermine</a> phentermine buy phentermine http://forum.socalitpro.org/download.aspx?id=6&MessageID=52 <a href='http://forum.socalitpro.org/download.aspx?id=6..
-
Subject: sony ringtones
Tracked from sony ringtones 2007/02/24 12:22 삭제sony ringtones <a href='http://h0ilsthaa.blogspot.com'>sony ringtones</a> sony ringtones sony ringtones http://h0ilsthaa.blogspot.com <a href='http://h0ilsthaa.blogspot.com'>sony ringtones</a>
-
Subject: funny ringtones
Tracked from funny ringtones 2007/02/25 05:14 삭제funny ringtones <a href='http://pec1.jun.alaska.edu/aldermyths/discuss/msgReader$137'>funny ringtones</a> funny ringtone funny ringtones http://pec1.jun.alaska.edu/aldermyths/discuss/msgReader$137 <a href='http://pec1.jun.alaska.edu/aldermyths/discuss/m..
-
Subject: funny ringtones
Tracked from funny ringtones 2007/02/25 05:15 삭제funny ringtones <a href='http://sg.wilkes.edu/semms/discuss/msgReader$16'>funny ringtones</a> funny ringtone funny ringtones http://sg.wilkes.edu/semms/discuss/msgReader$16 <a href='http://sg.wilkes.edu/semms/discuss/msgReader$16'>funny ringtones</a>
-
Subject: generic fioricet
Tracked from generic fioricet 2007/02/25 05:15 삭제generic fioricet <a href='http://sg.wilkes.edu/semms/discuss/msgReader$9'>generic fioricet</a> fioricet buy fioricet http://sg.wilkes.edu/semms/discuss/msgReader$9 <a href='http://sg.wilkes.edu/semms/discuss/msgReader$9'>generic fioricet</a>
-
Subject: nokia ringtones
Tracked from nokia ringtones 2007/02/25 05:15 삭제nokia ringtones <a href='http://volny.cz/geteltelt/files/1qh568.html'>nokia ringtones</a> nokia ringtone nokia ringtones http://volny.cz/geteltelt/files/1qh568.html <a href='http://volny.cz/geteltelt/files/1qh568.html'>nokia ringtones</a>
-
Subject: generic ritalin
Tracked from generic ritalin 2007/02/25 05:15 삭제generic ritalin <a href='http://volny.cz/ordronpas/data/qfttfe.html'>generic ritalin</a> ritalin buy ritalin http://volny.cz/ordronpas/data/qfttfe.html <a href='http://volny.cz/ordronpas/data/qfttfe.html'>generic ritalin</a>
-
Subject: nextel ringtones
Tracked from nextel ringtones 2007/02/25 05:15 삭제nextel ringtones <a href='http://erlaou.skracaj.pl/'>nextel ringtones</a> nextel ringtone nextel ringtones http://erlaou.skracaj.pl/ <a href='http://erlaou.skracaj.pl/'>nextel ringtones</a>
-
Subject: Buy ambien overnight mail md consultation.
Tracked from Buy ambien cr. 2007/02/25 17:33 삭제Buy ambien online no prescription. Ambien buy. Where can i buy ambien for next day delivery. Buy ambien without prescription.
-
Subject: phedra lancia automobili
Tracked from phedra lancia automobili 2007/02/25 17:36 삭제<a href='http://karota.czweb.org/images/small/phedra-lancia/'>phedra lancia automobili</a> http://karota.czweb.org/images/small/phedra-lancia/ <a href="http://karota.czweb.org/images/small/phedra-lancia/ ">phedra lancia automobili</a>
-
Subject: Hydrocodone for sale.
Tracked from Hydrocodone for sale. 2007/02/26 01:13 삭제No prescription needed sale lorazepam hydrocodone. Hydrocodone for sale.
-
Subject: Low cost phentermine.
Tracked from Drug phentermine. 2007/02/26 09:00 삭제Phentermine without a prescription. Phentermine. Lowest online phentermine price. Cheap phentermine online. Compare phentermine price. Drug phentermine.
-
Subject: Phentermine without doctor.
Tracked from Online phentermine without contacting doctor. 2007/02/26 09:02 삭제Phentermine no doctor matercard. Phentermine cod cheap no doctor. Phentermine online doctor. Phentermine without doctor.
-
Subject: Vicodin.
Tracked from Vicodin. 2007/02/26 16:45 삭제Cheap vicodin. Vicodin.
-
Subject: Buy adipex online order cheap adipex from us lic.
Tracked from Cheap adipex online order adipex now with discount. 2007/02/27 08:36 삭제Order adipex now. Order adipex online discount prices. Adipex p phentermine hcl mg order adipex p online. Adipex large order. Buy adipex online cheap adipex click amp order.
-
Subject: Vicodin no prescription.
Tracked from Vicodin online no prescription. 2007/02/27 16:28 삭제Vicodin online no prescription. Vicodin without a prescription.
-
Subject: Hydrocodone detection times.
Tracked from Purchase hydrocodone online. 2007/02/27 16:33 삭제Hydrocodone. I can t quit taking hydrocodone while pregnant. Hydrocodone apap 5 500. Buy hydrocodone.
-
Subject: How long does hydrocodone stay in urine.
Tracked from Hydrocodone. 2007/02/28 00:28 삭제Taking 2 hydrocodone a day and pregnant.
-
Subject: Phentermine pill.
Tracked from Drug phentermine. 2007/02/28 00:30 삭제Phentermine 37 5mg.
-
Subject: Phentermine.
Tracked from Picture of phentermine. 2007/02/28 08:15 삭제Phentermine without a prescription. Phentermine.
-
Subject: Buy xanax without prescription.
Tracked from Buy xanax. 2007/02/28 23:59 삭제Buy cheap generic xanax. Xanax. Generic xanax.
-
Subject: google탤츰
Tracked from google탤츰 2007/03/01 04:11 삭제google탤츰列街,google탤츰세減텬祁된google탤츰宮밑코휭.
-
Subject: google璘꿋탤츰
Tracked from google璘꿋탤츰 2007/03/01 06:33 삭제google璘꿋탤츰列街,google璘꿋탤츰세減텬祁된google璘꿋탤츰宮밑코휭.
-
Subject: Tramadol hcl.
Tracked from Tramadol hcl. 2007/03/01 15:24 삭제Will tramadol hcl test positive in drug testing. Tramadol hcl. Tramadol hcl 50mg. The lowest tramadol hcl price guaranteed fast.
-
Subject: Discount phentermine.
Tracked from Discount phentermine. 2007/03/01 23:13 삭제Discount phentermine. Phentermine pill online discount.
-
Subject: Tramadol prescribed by weight.
Tracked from Tramadol side affects. 2007/03/01 23:16 삭제Tramadol hcl. Tramadol.
-
Subject: xanax online
Tracked from xanax online 2007/03/01 23:36 삭제<a href='http://frontpage.montclair.edu/weybrightl/discuss/_disc1/0000003e.htm'>xanax online</a> http://frontpage.montclair.edu/weybrightl/discuss/_disc1/0000003e.htm <a href='http://frontpage.montclair.edu/weybrightl/discuss/_disc1/0000003e.htm'>xanax<..
-
Subject: cheap imitrex
Tracked from cheap imitrex 2007/03/01 23:36 삭제<a href='http://www.boriccna.my-site.co.il/'>cheap imitrex</a> http://www.boriccna.my-site.co.il/ <a href='http://www.boriccna.my-site.co.il/'>buy imitrex</a> imitrex buy imitrex
-
Subject: telus ringtones
Tracked from telus ringtones 2007/03/01 23:36 삭제<a href='http://blogs.kaixo.com/racrelboc/telus-ringtones/'>telus ringtones</a> http://blogs.kaixo.com/racrelboc/telus-ringtones/ <a href='http://blogs.kaixo.com/racrelboc/telus-ringtones/'>telus ringtone</a> telus ringtone telus ringtones
-
Subject: dianabol online
Tracked from dianabol online 2007/03/01 23:36 삭제<a href='http://www.daracvar.my-site.co.il/'>dianabol online</a> http://www.daracvar.my-site.co.il/ <a href='http://www.daracvar.my-site.co.il/'>dianabol</a> dianabol buy dianabol
-
Subject: diovan online
Tracked from diovan online 2007/03/01 23:36 삭제<a href='http://www.relelt-or.my-site.co.il/'>diovan online</a> http://www.relelt-or.my-site.co.il/ <a href='http://www.relelt-or.my-site.co.il/'>buy diovan</a> diovan buy diovan
-
Subject: Tramadol hydrochloride.
Tracked from Tramadol hydrochloride. 2007/03/02 14:53 삭제Tramadol hydrochloride. Tramadol hydrochloride for dogs. Hydrochloride tramadol.
-
Subject: Overnight xanax.
Tracked from Buy xanax overnight. 2007/03/02 22:35 삭제Xanax no prescription overnight delivery. Buy xanax with mastercard overnight delivery. Order xanax overnight.
-
Subject: Phentermine hcl.
Tracked from Phentermine line. 2007/03/02 22:36 삭제Phentermine. Phentermine information.
-
Subject: Tramadol.
Tracked from Tramadol ultram medicine. 2007/03/03 06:27 삭제Tramadol drug.
-
Subject: Ambien during pregnancy.
Tracked from Ambien. 2007/03/03 22:09 삭제Generic ambien. Ambien online no prescription overnight delivery. Ambien cr.
-
Subject: Vicodin no rx.
Tracked from Vicodin no rx. 2007/03/04 13:41 삭제Buy vicodin no rx.
-
Subject: need for speed ander graund
Tracked from need for speed ander graund 2007/03/04 17:14 삭제<a href='http://donumi.info/need-ander/'>need for speed ander graund</a> http://donumi.info/need-ander/ <a href='http://donumi.info/need-ander/'>need for speed ander graund</a> need for speed ander graund need for speed ander graund
-
Subject: microfoni shure sm58
Tracked from microfoni shure sm58 2007/03/04 17:14 삭제<a href='http://gender.110mb.com/images/small/microfoni-shure/'>microfoni shure sm58</a> http://gender.110mb.com/images/small/microfoni-shure/ <a href='http://gender.110mb.com/images/small/microfoni-shure/'>microfoni shure sm58</a> microfoni shure sm58 ..
-
Subject: mah jong gratis
Tracked from mah jong gratis 2007/03/04 17:14 삭제<a href='http://donumi.info/mah-jong/'>mah jong gratis</a> http://donumi.info/mah-jong/ <a href='http://donumi.info/mah-jong/'>mah jong gratis</a> mah jong gratis mah jong gratis
-
Subject: negrone mature
Tracked from negrone mature 2007/03/04 17:14 삭제<a href='http://gender.110mb.com/images/small/negrone-mature/'>negrone mature</a> http://gender.110mb.com/images/small/negrone-mature/ <a href='http://gender.110mb.com/images/small/negrone-mature/'>negrone mature</a> negrone mature negrone mature
-
Subject: video paprika gratis
Tracked from video paprika gratis 2007/03/04 17:14 삭제<a href='http://greeneiam.110mb.com/img/styles/video-paprika.htm'>video paprika gratis</a> http://greeneiam.110mb.com/img/styles/video-paprika.htm <a href='http://greeneiam.110mb.com/img/styles/video-paprika.htm'>video paprika gratis</a> video paprika g..
-
Subject: pang original
Tracked from pang original 2007/03/04 17:14 삭제<a href='http://donumi.info/pang-original/'>pang original</a> http://donumi.info/pang-original/ <a href='http://donumi.info/pang-original/'>pang original</a> pang original pang original
-
Subject: sputnik
Tracked from sputnik 2007/03/04 17:14 삭제<a href='http://mediaserver.8888mb.com/images/small/sputnik/'>sputnik</a> http://mediaserver.8888mb.com/images/small/sputnik/ <a href='http://mediaserver.8888mb.com/images/small/sputnik/'>sputnik</a> sputnik sputnik
-
Subject: fransizing
Tracked from fransizing 2007/03/04 17:14 삭제<a href='http://onestep.8888mb.com/img/styles/fransizing.htm'>fransizing</a> http://onestep.8888mb.com/img/styles/fransizing.htm <a href='http://onestep.8888mb.com/img/styles/fransizing.htm'>fransizing</a> fransizing fransizing
-
Subject: scooter malossi
Tracked from scooter malossi 2007/03/04 17:14 삭제<a href='http://onestep.8888mb.com/img/styles/scooter-malossi.htm'>scooter malossi</a> http://onestep.8888mb.com/img/styles/scooter-malossi.htm <a href='http://onestep.8888mb.com/img/styles/scooter-malossi.htm'>scooter malossi</a> scooter malossi scoote..
-
Subject: copertina di buona vita
Tracked from copertina di buona vita 2007/03/04 17:14 삭제<a href='http://saveoption.8888mb.com/img/styles/copertina-buona.htm'>copertina di buona vita</a> http://saveoption.8888mb.com/img/styles/copertina-buona.htm <a href='http://saveoption.8888mb.com/img/styles/copertina-buona.htm'>copertina di buona vita</..
-
Subject: Opana same pleasurable effects hydrocodone.
Tracked from Buy hydrocodone online. 2007/03/04 21:26 삭제Hydrocodone. Easy way to buy hydrocodone online. What is the lethal dose of hydrocodone. Buy hydrocodone. Hydrocodone apap 5 500.
-
Subject: Is it safe to take xanax during pregnancy.
Tracked from Xanax during pregnancy. 2007/03/05 13:04 삭제Xanax pregnancy. Is xanax safe during pregnancy. Xanax during pregnancy.
-
Subject: Buy xanax without precription.
Tracked from Buy xanax. 2007/03/07 08:53 삭제Buy xanax. Buy xanax online. Buy xanax without prescription in usa. Search results buy xanax online. Buy cheap xanax.
-
Subject: Ambien order wow what a price restorejustice org.
Tracked from Online pharmacy order ambien. 2007/03/07 16:38 삭제Order ambien. Ambien order wow what a price restorejustice org.
-
Subject: hotel jesolo
Tracked from hotel jesolo 2007/03/07 23:59 삭제http://stile.h18.ru/img/styles/hotel-jesolo.htm <a href='http://stile.h18.ru/img/styles/hotel-jesolo.htm'>hotel jesolo</a> <a href="http://stile.h18.ru/img/styles/hotel-jesolo.htm ">hotel jesolo</a> ettori-wireless/ <a href="http://weblancer.byethost1..
-
Subject: ancora di lei renga
Tracked from ancora di lei renga 2007/03/08 08:53 삭제ancora di lei renga <a href='http://erdeldel.110mb.com/img/styles/ancora-lei.htm'>ancora di lei renga</a> ancora di lei renga ancora di lei renga http://erdeldel.110mb.com/img/styles/ancora-lei.htm <a href='http://erdeldel.110mb.com/img/styles/ancora-le..
-
Subject: anna vissi nuda
Tracked from anna vissi nuda 2007/03/08 08:53 삭제anna vissi nuda <a href='http://remember.h18.ru/img/styles/vissi-nuda.htm'>anna vissi nuda</a> anna vissi nuda anna vissi nuda http://remember.h18.ru/img/styles/vissi-nuda.htm <a href='http://remember.h18.ru/img/styles/vissi-nuda.htm'>anna vissi nuda</a>
-
Subject: anziano
Tracked from anziano 2007/03/08 08:53 삭제anziano <a href='http://katep.yi.org/anziano/'>anziano</a> anziano anziano http://katep.yi.org/anziano/ <a href='http://katep.yi.org/anziano/'>anziano</a>
-
Subject: agenzie per accompagnatori
Tracked from agenzie per accompagnatori 2007/03/08 08:53 삭제agenzie per accompagnatori <a href='http://poloni.yi.org/per-accompagnatori/'>agenzie per accompagnatori</a> agenzie per accompagnatori agenzie per accompagnatori http://poloni.yi.org/per-accompagnatori/ <a href='http://poloni.yi.org/per-accompagnatori/..
-
Subject: galaxian 3
Tracked from galaxian 3 2007/03/08 08:53 삭제galaxian 3 <a href='http://aspirant.ho.com.ua/images/small/galaxian /'>galaxian 3</a> galaxian 3 galaxian 3 http://aspirant.ho.com.ua/images/small/galaxian / <a href='http://aspirant.ho.com.ua/images/small/galaxian /'>galaxian 3</a>
-
Subject: nike air pegasus
Tracked from nike air pegasus 2007/03/08 08:53 삭제nike air pegasus <a href='http://transfer.0moola.com/images/small/nike-pegasus/'>nike air pegasus</a> nike air pegasus nike air pegasus http://transfer.0moola.com/images/small/nike-pegasus/ <a href='http://transfer.0moola.com/images/small/nike-pegasus/'..
-
Subject: bravo funny
Tracked from bravo funny 2007/03/08 08:53 삭제bravo funny <a href='http://darkmonk.ho.com.ua/img/styles/bravo-funny.htm'>bravo funny</a> bravo funny bravo funny http://darkmonk.ho.com.ua/img/styles/bravo-funny.htm <a href='http://darkmonk.ho.com.ua/img/styles/bravo-funny.htm'>bravo funny</a>
-
Subject: cura e controllo dell asma
Tracked from cura e controllo dell asma 2007/03/08 08:53 삭제cura e controllo dell asma <a href='http://spiceman.ho.com.ua/img/styles/cura-e.htm'>cura e controllo dell asma</a> cura e controllo dell asma cura e controllo dell asma http://spiceman.ho.com.ua/img/styles/cura-e.htm <a href='http://spiceman.ho.com.ua/..
-
Subject: az
Tracked from az 2007/03/08 08:53 삭제az <a href='http://poloni.yi.org/az/'>az</a> az az http://poloni.yi.org/az/ <a href='http://poloni.yi.org/az/'>az</a>
-
Subject: catsong
Tracked from catsong 2007/03/08 08:53 삭제catsong <a href='http://aspirant.ho.com.ua/images/small/catsong/'>catsong</a> catsong catsong http://aspirant.ho.com.ua/images/small/catsong/ <a href='http://aspirant.ho.com.ua/images/small/catsong/'>catsong</a>
-
Subject: unplugged giorgia cd musicali
Tracked from unplugged giorgia cd musicali 2007/03/08 08:53 삭제unplugged giorgia cd musicali <a href='http://spiceman.ho.com.ua/img/styles/unplugged-giorgia.htm'>unplugged giorgia cd musicali</a> unplugged giorgia cd musicali unplugged giorgia cd musicali http://spiceman.ho.com.ua/img/styles/unplugged-giorgia.htm <..
-
Subject: affitto appartamenti lignano
Tracked from affitto appartamenti lignano 2007/03/08 08:53 삭제affitto appartamenti lignano <a href='http://poloni.yi.org/affitto-appartamenti/'>affitto appartamenti lignano</a> affitto appartamenti lignano affitto appartamenti lignano http://poloni.yi.org/affitto-appartamenti/ <a href='http://poloni.yi.org/affitto..
-
Subject: indianajones
Tracked from indianajones 2007/03/08 08:53 삭제indianajones <a href='http://transfer.0moola.com/images/small/indianajones/'>indianajones</a> indianajones indianajones http://transfer.0moola.com/images/small/indianajones/ <a href='http://transfer.0moola.com/images/small/indianajones/'>indianajones</a>
-
Subject: honey and the mon
Tracked from honey and the mon 2007/03/08 08:53 삭제honey and the mon <a href='http://erdeldel.110mb.com/img/styles/honey-and.htm'>honey and the mon</a> honey and the mon honey and the mon http://erdeldel.110mb.com/img/styles/honey-and.htm <a href='http://erdeldel.110mb.com/img/styles/honey-and.htm'>hone..
-
Subject: tf vs moltosugo
Tracked from tf vs moltosugo 2007/03/08 08:53 삭제tf vs moltosugo <a href='http://spiceworld.3-hosting.net/images/small/tf-vs/'>tf vs moltosugo</a> tf vs moltosugo tf vs moltosugo http://spiceworld.3-hosting.net/images/small/tf-vs/ <a href='http://spiceworld.3-hosting.net/images/small/tf-vs/'>tf vs mol..
-
Subject: Ambien overnight.
Tracked from Ambien overnight. 2007/03/08 23:45 삭제Buy ambien cr overnight mail md consultation. Ambien overnight. Overnight delivery ambien. Buy ambien overnight mail md consultation.
-
Subject: generic flexeril
Tracked from generic flexeril 2007/03/09 23:26 삭제generic flexeril <a href='http://581632.guestbook.onetwomax.de/'>generic flexeril</a> flexeril buy flexeril http://581632.guestbook.onetwomax.de/ <a href='http://581632.guestbook.onetwomax.de/'>generic flexeril</a>
-
Subject: jazz ringtones
Tracked from jazz ringtones 2007/03/09 23:27 삭제jazz ringtones <a href='http://sitoearks.siteburg.com/info/bodarelt.html'>jazz ringtones</a> jazz ringtone jazz ringtones http://sitoearks.siteburg.com/info/bodarelt.html <a href='http://sitoearks.siteburg.com/info/bodarelt.html'>jazz ringtones</a>
-
Subject: generic levitra
Tracked from generic levitra 2007/03/09 23:27 삭제generic levitra <a href='http://facstaffwebs.umes.edu/jadavis/engl336/_disc6/00003daf.htm'>buy levitra</a> levitra buy levitra http://facstaffwebs.umes.edu/jadavis/engl336/_disc6/00003daf.htm <a href='http://facstaffwebs.umes.edu/jadavis/engl336/_disc6/..
-
Subject: clonazepam online
Tracked from clonazepam online 2007/03/09 23:27 삭제clonazepam online <a href='http://faculty.plattsburgh.edu/mark.beatham/_CIE2001F/0000020d.htm'>buy clonazepam</a> clonazepam buy clonazepam http://faculty.plattsburgh.edu/mark.beatham/_CIE2001F/0000020d.htm <a href='http://faculty.plattsburgh.edu/mark.b..
-
Subject: cheap carisoprodol
Tracked from cheap carisoprodol 2007/03/09 23:27 삭제cheap carisoprodol <a href='http://ces.ca.uky.edu/extensionadministration/re_envisioning_ces/discussion/_disc4/00000024.htm'>buy carisoprodol</a> carisoprodol buy carisoprodol http://ces.ca.uky.edu/extensionadministration/re_envisioning_ces/discussion/_..
-
Subject: nokia ringtones
Tracked from nokia ringtones 2007/03/09 23:27 삭제nokia ringtones <a href='http://ag.ansc.purdue.edu/EXOTICSP/_disc1/00001d25.htm'>nokia ringtones</a> nokia ringtone nokia ringtones http://ag.ansc.purdue.edu/EXOTICSP/_disc1/00001d25.htm <a href='http://ag.ansc.purdue.edu/EXOTICSP/_disc1/00001d25.htm'>n..
-
Subject: cheap xanax
Tracked from cheap xanax 2007/03/09 23:27 삭제cheap xanax <a href='http://instructional1.calstatela.edu/ashin/discussion/_engl430Spring03disc/000011af.htm'>buy xanax</a> xanax buy xanax http://instructional1.calstatela.edu/ashin/discussion/_engl430Spring03disc/000011af.htm <a href='http://instructi..
-
Subject: cheap wellbutrin
Tracked from cheap wellbutrin 2007/03/09 23:27 삭제cheap wellbutrin <a href='http://581821.guestbook.onetwomax.de/'>buy wellbutrin</a> wellbutrin buy wellbutrin http://581821.guestbook.onetwomax.de/ <a href='http://581821.guestbook.onetwomax.de/'>cheap wellbutrin</a>

댓글을 달아 주세요
int (CFunc::*func)( int, int );
func = CFunc::GetArea; // 요기에서 func = &CFunc::GetArea; 이렇게 해야하는 것 아닌가요?
CFunc A;
(A.*func)( x, y );
소닌님 / 멤버변수에는 &를 꼭 붙여줘야 하지만 멤버함수는 함수이름 그자체로 포인터라 할 수 있으므로 굳이 &를 붙이지 않아도 됩니다. ^^
그런가요? 음... 표준은 어떤지 잘 모르겠지만, &를 안쓰면 g++에서는 컴파일 에러가 나는군요. VC++에서 한번 해봐야겟군요.
소닌님 / 저도 표준은 잘 모르겠네요.. g++에서 에러가 난다면 &를 붙이는쪽이 더 나을 듯 하네요.. VC++에서는 에러없이 작동합니다.
인스턴스를 어떻게 안적어볼까 했는데
그냥 이렇게 하면 되겠군요;
좋은글 잘 봤습니다.
부족한 글이나마 도움이 되셨다니 다행이네요 ^^
감사합니다~
너는 아주 좋은 보는 위치가 있는다!
많은 감사 우수한 위치! 나는 너의 웹사이트를 사랑한다!
우수한과 아주 도움이 되는!
좋은 위치! 너를 감사하십시요.
관심을 끌. 너가 동일할 좋을 지점을 다시 배치할 것 을 나는 희망한다.
친구는 너의 위치의 현재 팬이 되었다!
중대하고 유용한 위치!
너는 아주 좋은 보는 위치가 있는다!
C에서 C 의 Member function을 callback으로 호출 하기 위해서
c로 클래스의 static 함수를 넘기고,
static function에서 member function을 호출 하기는
조금 번거롭군요.
나의 너의 친구는 위치의 현재 팬이 되었다!
여기 이것은 뉴스 있다!
유용한 정보. 좋은 디자인.
위치에 그것을 중대한 일은 좋아했다!
나의 너의 친구는 위치의 현재 팬이 되었다!
일! 우수한 감사!
나는 배웠다 매우…
너는 아주 보는 좋은 위치가 있는다!
너의 방문한 위치를 즐기는!