-1

私は C++ を初めて使用し、アプリの実行中に問題が発生しました。問題をグーグル検索しましたが、ほとんどの結果はライブラリのリンクに関するものだったので、新しいスレッドを開始しました。

VtkDialogTest2 ダイアログ クラスから継承しているクラス CResizableDialog があります。

VtkDialogTest2.h;

#pragma once

#include "CResizableDialog.h"


#ifdef _WIN32_WCE
#error "CDHtmlDialog is not supported for Windows CE."
#endif 

// VtkDialogTest2 dialog

class VtkDialogTest2 : public CResizableDialog
{
    DECLARE_DYNCREATE(VtkDialogTest2)

public:
    VtkDialogTest2(CWnd* pParent = NULL);   // standard constructor
    virtual ~VtkDialogTest2();
// Overrides
    HRESULT OnButtonOK(IHTMLElement *pElement);
    HRESULT OnButtonCancel(IHTMLElement *pElement);





// Dialog Data
    enum { IDD = IDD_DIALOG4 };

protected:
    virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
    virtual BOOL OnInitDialog();

    DECLARE_MESSAGE_MAP()

public:
    afx_msg void OnBnClickedOk();
};

VtkDialogTest2.cpp

#include "stdafx.h"
#include "Geometry.h"
#include "VtkDialogTest2.h"


IMPLEMENT_DYNCREATE(VtkDialogTest2, CResizableDialog)

VtkDialogTest2::VtkDialogTest2(CWnd* pParent /*=NULL*/)
    : CResizableDialog(VtkDialogTest2::IDD, pParent),
{

}

VtkDialogTest2::~VtkDialogTest2()
{
}

void VtkDialogTest2::DoDataExchange(CDataExchange* pDX)
{
    CResizableDialog::DoDataExchange(pDX);
}



BOOL VtkDialogTest2::OnInitDialog()
{
    CResizableDialog::OnInitDialog();
    //some code


    return TRUE;  // return TRUE  unless you set the focus to a control
}

BEGIN_MESSAGE_MAP(VtkDialogTest2, CResizableDialog)
    ON_BN_CLICKED(IDOK, &VtkDialogTest2::OnBnClickedOk)
END_MESSAGE_MAP()

//some code

何が間違っているのかわかりません。CResizableDialog.h クラスをまったく同じ方法で使用する Web から例をダウンロードし、CResizableDialog.h と CResizableDialog.cpp の両方をプロジェクトにコピーしました。

私が得ているエラーは次のとおりです。

1>VtkDialogTest2.obj : error LNK2019: unresolved external symbol "public: __thiscall CResizableDialog::CResizableDialog(unsigned int,class CWnd *)" (??0CResizableDialog@@QAE@IPAVCWnd@@@Z) referenced in function "public: __thiscall VtkDialogTest2::VtkDialogTest2(class CWnd *)" (??0VtkDialogTest2@@QAE@PAVCWnd@@@Z)
1>VtkDialogTest2.obj : error LNK2019: unresolved external symbol "protected: virtual int __thiscall CResizableDialog::OnInitDialog(void)" (?OnInitDialog@CResizableDialog@@MAEHXZ) referenced in function "protected: virtual int __thiscall VtkDialogTest2::OnInitDialog(void)" (?OnInitDialog@VtkDialogTest2@@MAEHXZ)
1>VtkDialogTest2.obj : error LNK2001: unresolved external symbol "protected: static struct AFX_MSGMAP const * __stdcall CResizableDialog::GetThisMessageMap(void)" (?GetThisMessageMap@CResizableDialog@@KGPBUAFX_MSGMAP@@XZ)
1>C:\Users\Geometry.exe : fatal error LNK1120: 3 unresolved externals

どんな入力でも大歓迎です。

4

1 に答える 1