무슨 바람이 불었는지 갑자기 이런글이 쓰고 싶어져서 후다닥 써봤다;

틀린점이 많을지도...;ㅁ;

(사실 모 카페의 압박이..--;;)

///////////////////////////

< 함수 포인터 >

먼저 이 글은 포인터에 대한 이해를 필요로 한다.

포인터에 대한 기본지식이 있다고 가정하고 글을 쓰도록 하겠다.


int GetAreaEx( int x, int y )
{
    return x * y;
}


우선 이런 간단한 함수가 있다. 우리는 이 함수를 호출하기 위해 명시적으로

GetAreaEx( x, y );

이런식으로 기술해야 한다.

하지만 예를 들어 GetArea2, GetArea3, ..., GetAreaN 이런식으로 비슷한 함수가 존재하고

이를 상황에따라 다르게 호출해야 한다면 이 방식으로는 관리도 어려울 뿐더러 효율성도 떨어지고 코드량도 많이질 것이다.

또한 외부(스크립트 등)에서 어떤 특정한 함수를 호출하려 할때도 방법이 묘연할 것이다.


int (*GetArea)( int, int );

이 선언은 무엇일까?

언뜻보기에는 함수를 선언하는 것 같다.

이 선언은 함수에 대한 포인터를 선언한 것이다.

변수의 주소를 담는 포인터와 마찬가지로 함수포인터는 함수의 주소를 담는다.

GetArea = GetAreaEx; // 함수포인터 GetArea에 GetAreaEx()의 주소를 담는다
int nArea = (*GetArea)( x, y ); // (*GetArea)( x, y ); 로 GetAreaEx()함수를 호출하고 리턴받은 값을 nArea에 대입


이런식으로 GetAreaEx를 호출할 수 있다.

유의할점은 *GetArea를 꼭 ()로 감싸주어야 한다는 사실이다.

빼먹으면 컴파일러가 함수포인터를 통한 호출로 인식하지 못한다.


int (*GetArea[])( int, int ) = { GetAreaEx, GetArea2, GetArea3, ..., GetAreaN };

이것은 함수포인터 배열을 정적으로 선언한 것이다. 이렇게 배열로 기능이 비슷한 함수들을 묶어놓았다.

void CallFunc( int nState, int x, y )
{
    int nResult = (*GetArea[nState])( x, y );
}


그리고 그 함수들을 상황에 맞게 호출한다.

만약 함수포인터를 쓰지 않는다면

void CallFunc( int nState, int x, int 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;
    }
}

위와 같이 기술해야 할 것이다.

두 방식의 차이점과 함수포인터의 이점을 알 수 있겠는가

그렇다면 함수포인터 배열을 동적으로 할당하는 방법은 없을까?

다음과 같은 방법으로 할당할 수 있다.

int (**GetArea)( int, int ); // 함수포인터의 포인터
GetArea = new (int (*[N])( int, int )); // N은 배열의 크기


그리고 다음과 같이 사용하면 된다.

GetArea[0] = GetAreaEx;
GetArea[1] = GetArea2;
GetArea[2] = GetArea3;
...

int nResult = (*GetArea[nState])( x, y );


물론 사용후 delete [] GetArea; 해서 해제하는것을 잊으면 안된다.



< 클래스 멤버함수의 함수포인터화 >

함수포인터는 함수의 주소값을 담는다고 했다.

그렇다면 클래스 멤버함수의 주소값도 단순히 함수포인터에 담아서 호출할 수 있지 않을까?

int (*func)();
func = CFunc::GetArea;


하지만 이 방법은 GetArea()멤버함수가 static으로 선언되었을 때만 가능하다.

static으로 선언되지 않은 멤버함수(멤버변수를 건들여야 하는 멤버함수)를 이 방법으로 담으려 한다면 컴파일 에러가 뜰 것이다.

여기에 다음과 같은 해결방법이 있다.

첫번째 방법은

class CFunc
{
public:
    static int GetArea( CFunc * cls, int x, int y );
};


위와 같이 선언하고 호출할때 해당 인트턴스의 포인터를 넘겨줘서

int GetArea( CFunc * cls, int x, int y )
{
    int a = cls->GetZ();
}


이런식으로 멤버변수를 읽거나 쓸수 있겠지만 이 방식으로는 한계가 있다.

Get, Set 같은 public 외부함수로 억세스하지 않으면 private나 protected안에 선언되어 있는

멤버변수는 건드릴 수 없다.

두번째는 멤버함수의 소속을 명시화하는 방법이다.

int (CFunc::*func)( int, int );
func = CFunc::GetArea;
CFunc A;
(A.*func)( x, y );


위와 같은 방법으로 해결가능하다. 물론 호출할 인스턴스가 명확해야 한다.

세번째는 클래스 안에 함수포인터를 멤버변수로 두고 별도의 함수포인터를 컨트롤하는 멤버함수를 만드는 방법이 있다.

이 방법이 멤버함수 관리가 가장 쉬우며 효율적이다.

class CFunc
{
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 호출이 가능해진다.

지금은 단순히 한개의 멤버함수 호출만 할뿐 의미가 없다. 이제 실제 효율적으로 쓰이게 배열을 써보자.

class CFunc
{
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;
}

자, 이제 함수하나의 호출로 상황에따라 여러 멤버함수를 호출할 수 있는 기반이 마련되었다.

CFunc A;
A.CallFunc( nState, x, y );


이렇게...

어떠한가. 함수포인터의 위력이 느껴지는가?




< STL을 이용한 함수포인터 관리 >

우리는 지금까지 함수포인터를 동적으로 배열을 할당해서 써왔다.

함수 포인터를 STL(Standard Template Library)을 써서 관리해보자.

클래스의 멤버함수의 함수포인터화에서 3번째 방법을 조금 개선시켜 보겠다.



단순히 인덱스(숫자)를 이용한 관리라면 deque정도가 괜찮을듯 싶으나,

만약 함수의 이름을 문자열로 호출하고 싶다면 map을 써볼 수 있다.

(만약 FuncCall( "GetArea", x, y ); 이런식으로 멤버함수를 호출하고 싶다면)

map은 내부적으로 트리구조를 가지고 있다.

그래서 따로 정적/동적으로 배열을 할당하지 않아도 입력된 값을 비교해서 스스로 자신의 크기를 늘린다.

mapValue["GetArea"] = 99;

이런식으로 []안에 숫자 뿐만아니라 비교할 수 있는 모든 것이 들어갈 수 있다.

먼저 map을 사용하기 위해

#include < map >
using namespace std;


를 선언한다. map은 표준 네임스페이스를 사용하므로 std의 이름공간을 활용한다.

map< []안에 들어갈 타입, 입력될 데이터타입, 비교 논리 > mapFunctor;

선언방법은 이렇게 되는데 비교 논리는 첫번째 인수가 클래스이고 안에 비교오퍼레이터가 있다면 생략가능하다

자, 이제 해보자.



struct ltstr
{
    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

  1. Subject: 함수 포인터 및 클래스 멤버함수의 함수포인터화

    Tracked from GNUZone::강좌 2006/06/21 13:14  삭제

    좋은 강좌가 있어서 가져옵니다. 출처는 http://izeph.com/tt/blog/index.php?pl=155 입니다. - 스카이 -------------------------------------------------------------------------- 먼저 이 글은 ..

  2. 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>

  3. Subject: 흡폘땡포

    Tracked from 흡폘땡포 2007/02/07 08:07  삭제

    흡폘땡포

  4. 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>

  5. 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..

  6. 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>

  7. 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

  8. 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

  9. 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-

  10. 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..

  11. 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

  12. 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

  13. 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

  14. 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

  15. 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

  16. 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>

  17. 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>

  18. 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>

  19. 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>

  20. 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 ..

  21. 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

  22. 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..

  23. 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

  24. 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..

  25. 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

  26. 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..

  27. 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

  28. 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> ..

  29. 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-..

  30. 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

  31. 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

  32. 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..

  33. 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

  34. 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..

  35. 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..

  36. 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..

  37. 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>

  38. 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>

  39. 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>

  40. 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>

  41. 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..

  42. 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>

  43. 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..

  44. 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>

  45. 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>

  46. 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>

  47. 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>

  48. 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>

  49. 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.

  50. 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>

  51. Subject: Hydrocodone for sale.

    Tracked from Hydrocodone for sale. 2007/02/26 01:13  삭제

    No prescription needed sale lorazepam hydrocodone. Hydrocodone for sale.

  52. 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.

  53. 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.

  54. Subject: Vicodin.

    Tracked from Vicodin. 2007/02/26 16:45  삭제

    Cheap vicodin. Vicodin.

  55. 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.

  56. Subject: Vicodin no prescription.

    Tracked from Vicodin online no prescription. 2007/02/27 16:28  삭제

    Vicodin online no prescription. Vicodin without a prescription.

  57. 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.

  58. Subject: How long does hydrocodone stay in urine.

    Tracked from Hydrocodone. 2007/02/28 00:28  삭제

    Taking 2 hydrocodone a day and pregnant.

  59. Subject: Phentermine pill.

    Tracked from Drug phentermine. 2007/02/28 00:30  삭제

    Phentermine 37 5mg.

  60. Subject: Phentermine.

    Tracked from Picture of phentermine. 2007/02/28 08:15  삭제

    Phentermine without a prescription. Phentermine.

  61. Subject: Buy xanax without prescription.

    Tracked from Buy xanax. 2007/02/28 23:59  삭제

    Buy cheap generic xanax. Xanax. Generic xanax.

  62. Subject: google탤츰

    Tracked from google탤츰 2007/03/01 04:11  삭제

    google탤츰列街,google탤츰세減텬祁된google탤츰宮밑코휭.

  63. Subject: google璘꿋탤츰

    Tracked from google璘꿋탤츰 2007/03/01 06:33  삭제

    google璘꿋탤츰列街,google璘꿋탤츰세減텬祁된google璘꿋탤츰宮밑코휭.

  64. 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.

  65. Subject: Discount phentermine.

    Tracked from Discount phentermine. 2007/03/01 23:13  삭제

    Discount phentermine. Phentermine pill online discount.

  66. Subject: Tramadol prescribed by weight.

    Tracked from Tramadol side affects. 2007/03/01 23:16  삭제

    Tramadol hcl. Tramadol.

  67. 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<..

  68. 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

  69. 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

  70. 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

  71. 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

  72. Subject: Tramadol hydrochloride.

    Tracked from Tramadol hydrochloride. 2007/03/02 14:53  삭제

    Tramadol hydrochloride. Tramadol hydrochloride for dogs. Hydrochloride tramadol.

  73. 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.

  74. Subject: Phentermine hcl.

    Tracked from Phentermine line. 2007/03/02 22:36  삭제

    Phentermine. Phentermine information.

  75. Subject: Tramadol.

    Tracked from Tramadol ultram medicine. 2007/03/03 06:27  삭제

    Tramadol drug.

  76. Subject: Ambien during pregnancy.

    Tracked from Ambien. 2007/03/03 22:09  삭제

    Generic ambien. Ambien online no prescription overnight delivery. Ambien cr.

  77. Subject: Vicodin no rx.

    Tracked from Vicodin no rx. 2007/03/04 13:41  삭제

    Buy vicodin no rx.

  78. 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

  79. 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 ..

  80. 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

  81. 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

  82. 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..

  83. 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

  84. 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

  85. 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

  86. 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..

  87. 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</..

  88. 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.

  89. 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.

  90. 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.

  91. 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.

  92. 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..

  93. 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..

  94. 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>

  95. 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>

  96. 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/..

  97. 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>

  98. 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/'..

  99. 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>

  100. 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/..

  101. 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>

  102. 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>

  103. 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 <..

  104. 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..

  105. 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>

  106. 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..

  107. 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..

  108. 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.

  109. 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>

  110. 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>

  111. 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/..

  112. 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..

  113. 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/_..

  114. 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..

  115. 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..

  116. 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>

댓글을 달아 주세요

  1. 소닌 2005/09/25 00:03  댓글주소  수정/삭제  댓글쓰기

    int (CFunc::*func)( int, int );
    func = CFunc::GetArea; // 요기에서 func = &CFunc::GetArea; 이렇게 해야하는 것 아닌가요?
    CFunc A;
    (A.*func)( x, y );

  2. NKOOL 2005/09/25 00:27  댓글주소  수정/삭제  댓글쓰기

    소닌님 / 멤버변수에는 &를 꼭 붙여줘야 하지만 멤버함수는 함수이름 그자체로 포인터라 할 수 있으므로 굳이 &를 붙이지 않아도 됩니다. ^^

  3. 소닌 2005/09/25 00:45  댓글주소  수정/삭제  댓글쓰기

    그런가요? 음... 표준은 어떤지 잘 모르겠지만, &를 안쓰면 g++에서는 컴파일 에러가 나는군요. VC++에서 한번 해봐야겟군요.

  4. NKOOL 2005/09/25 00:56  댓글주소  수정/삭제  댓글쓰기

    소닌님 / 저도 표준은 잘 모르겠네요.. g++에서 에러가 난다면 &를 붙이는쪽이 더 나을 듯 하네요.. VC++에서는 에러없이 작동합니다.

  5. cretom 2006/12/31 13:18  댓글주소  수정/삭제  댓글쓰기

    인스턴스를 어떻게 안적어볼까 했는데

    그냥 이렇게 하면 되겠군요;

    좋은글 잘 봤습니다.

  6. 2006 pro quickbooks simplified 2007/10/12 22:37  댓글주소  수정/삭제  댓글쓰기

    너는 아주 좋은 보는 위치가 있는다!

  7. gang bang black cock 2007/10/18 05:25  댓글주소  수정/삭제  댓글쓰기

    많은 감사 우수한 위치! 나는 너의 웹사이트를 사랑한다!

  8. door manufacturer metal 2008/03/13 05:36  댓글주소  수정/삭제  댓글쓰기

    우수한과 아주 도움이 되는!

  9. ad nauseum 2008/03/13 07:26  댓글주소  수정/삭제  댓글쓰기

    좋은 위치! 너를 감사하십시요.

  10. queef 2008/03/13 08:18  댓글주소  수정/삭제  댓글쓰기

    관심을 끌. 너가 동일할 좋을 지점을 다시 배치할 것 을 나는 희망한다.

  11. used winter horse blanket 2008/03/13 08:54  댓글주소  수정/삭제  댓글쓰기

    친구는 너의 위치의 현재 팬이 되었다!

  12. petlovers post private video 2008/03/13 09:23  댓글주소  수정/삭제  댓글쓰기

    중대하고 유용한 위치!

  13. naked gay man video 2008/03/14 04:41  댓글주소  수정/삭제  댓글쓰기

    너는 아주 좋은 보는 위치가 있는다!

  14. Ronie.kang 2008/04/11 16:51  댓글주소  수정/삭제  댓글쓰기

    C에서 C 의 Member function을 callback으로 호출 하기 위해서
    c로 클래스의 static 함수를 넘기고,
    static function에서 member function을 호출 하기는
    조금 번거롭군요.

  15. unix web hosting 2008/05/23 04:22  댓글주소  수정/삭제  댓글쓰기

    나의 너의 친구는 위치의 현재 팬이 되었다!

  16. club slutty wear woman 2008/05/23 04:52  댓글주소  수정/삭제  댓글쓰기

    여기 이것은 뉴스 있다!

  17. aquarium stores in houston 2008/05/23 05:25  댓글주소  수정/삭제  댓글쓰기

    유용한 정보. 좋은 디자인.

  18. grandma moses fabric prints 2008/05/23 07:07  댓글주소  수정/삭제  댓글쓰기

    위치에 그것을 중대한 일은 좋아했다!

  19. eva green nude pics 2008/05/24 00:14  댓글주소  수정/삭제  댓글쓰기

    나의 너의 친구는 위치의 현재 팬이 되었다!

  20. busty cum old 2008/05/24 02:03  댓글주소  수정/삭제  댓글쓰기

    나는 배웠다 매우…

  21. eagles trace houston 2008/05/24 03:11  댓글주소  수정/삭제  댓글쓰기

    너는 아주 보는 좋은 위치가 있는다!

  22. american girl idol scat 2008/05/24 03:29  댓글주소  수정/삭제  댓글쓰기

    너의 방문한 위치를 즐기는!