Ambiera Forum

Discussions, Help and Support.

Ambiera Forum > irrXML
Linkin error problem

shinigami
Registered User
Quote
2010-11-09 20:06:54

Hi:

I'm using the irrXML parser on other project, not for Irrlicht and I'm having this error:


Error 1 error LNK2028: unresolved token (0A000024) "class irr::io::IIrrXMLReader<char,class irr::io::IXMLBase> * __clrcall irr::io::createIrrXMLReader(char const *)" (?createIrrXMLReader@io@irr@@$$FYMPAV?$IIrrXMLReader@DVIXMLBase@io@irr@@@12@PBD@Z) referenced in function "private: void __clrcall Biblioteca::Form1::button1_Click(class System::Object ^,class System::EventArgs ^)" (?button1_Click@Form1@Biblioteca@@$$FA$AAMXP$AAVObject@System@@P$AAVEventArgs@4@@Z) Biblioteca.obj Biblioteca



Thanks in advance.

Shinigami out.


niko
Moderator
Quote
2010-11-10 07:08:56

I think you haven't simply added all irrXML files to your project?


shinigami
Registered User
Quote
2010-11-11 17:06:20

Hi:

Nop, I already added all the .h and .cpp and keep doing the same let me show you all the code, perhaps you see something wrong.

pragma once
include <irrXML.h>

include <string> // we use STL strings to store data in this example


namespace Biblioteca {
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
using namespace irr;
using namespace io;

/// <summary>
/// Summary for Form1
///
/// WARNING: If you change the name of this class, you will need to change the
/// 'Resource File Name' property for the managed resource compiler tool
/// associated with all .resx files this class depends on. Otherwise,
/// the designers will not be able to interact properly with localized
/// resources associated with this form.
/// </summary>
public ref class Form1 : public System::Windows::Forms::Form
{
public:
Form1(void)
{
InitializeComponent();
//
//TODO: Add the constructor code here
//
}

protected:
/// <summary>
/// Clean up any resources being used.
/// </summary>
~Form1()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::OpenFileDialog^ openFileDialog1;
protected:
private: System::Windows::Forms::Button^ button1;

private:
/// <summary>
/// Required designer variable.
/// </summary>
System::ComponentModel::Container ^components;

pragma region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
void InitializeComponent(void)
{
this->openFileDialog1 = (gcnew System::Windows::Forms::OpenFileDialog());
this->button1 = (gcnew System::Windows::Forms::Button());
this->SuspendLayout();
//
// openFileDialog1
//
this->openFileDialog1->FileName = L"openFileDialog1";
//
// button1
//
this->button1->Location = System::Drawing::Point(215, 162);
this->button1->Name = L"button1";
this->button1->Size = System::Drawing::Size(85, 23);
this->button1->TabIndex = 0;
this->button1->Text = L"Seleccionar";
this->button1->UseVisualStyleBackColor = true;
this->button1->Click += gcnew System::EventHandler(this, &Form1::button1_Click);
//
// Form1
//
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize = System::Drawing::Size(600, 344);
this->Controls->Add(this->button1);
this->Name = L"Form1";
this->Text = L"Form1";
this->ResumeLayout(false);

}

pragma endregion
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) {

IrrXMLReader * xml = createIrrXMLReader("C:\Users\Shinigami\Documents\Visual Studio 2008\Projects\Biblioteca\Biblioteca\test.xml");


}
};
}

The code is for a Window form application, and the error is this:
[code]
Error 7 error LNK2028: unresolved token (0A000024) "class irr::io::IIrrXMLReader<char,class irr::io::IXMLBase> * __clrcall irr::io::createIrrXMLReader(char const *)" (?createIrrXMLReader@io@irr@@$$FYMPAV?$IIrrXMLReader@DVIXMLBase@io@irr@@@12@PBD@Z) referenced in function "private: void __clrcall Biblioteca::Form1::button1_Click(class System::Object ^,class System::EventArgs ^)" (?button1_Click@Form1@Biblioteca@@$$FA$AAMXP$AAVObject@System@@P$AAVEventArgs@4@@Z) Biblioteca.obj Biblioteca
Error 8 error LNK2019: unresolved external symbol "class irr::io::IIrrXMLReader<char,class irr::io::IXMLBase> * __clrcall irr::io::cr


shinigami
Registered User
Quote
2010-11-11 17:32:56

HI again:

I started a new project just in case the error was mine and now the error changed.


Warning 1 warning C4996: 'fopen': This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. c:\Users\Shinigami\Documents\Visual Studio 2008\Projects\Biblioteca\Biblioteca\xml\irrXML.cpp 26 Biblioteca
Error 2 error C3862: 'irr::core::array<T>::operator []': cannot compile an unmanaged function with /clr:pure or /clr:safe c:\users\shinigami\documents\visual studio 2008\projects\biblioteca\biblioteca\xml\irrArray.h 225 Biblioteca
Error 3 error C3645: 'irr::core::array<T>::operator []' : __clrcall cannot be used on functions compiled to native code c:\users\shinigami\documents\visual studio 2008\projects\biblioteca\biblioteca\xml\irrArray.h 225 Biblioteca


Shinigami out....


niko
Moderator
Quote
2010-11-12 07:17:17

You created a project with Managed C++/CLI, this is probably not what you want. You need to create a normal C++ project.


Create reply:


Posted by: (you are not logged in)


Enter the missing letter in: "?nternational" (you are not logged in)


Text:

 

  

Possible Codes


Feature Code
Link [url] www.example.com [/url]
Bold [b]bold text[/b]
Image [img]http://www.example.com/image.jpg[/img]
Quote [quote]quoted text[/quote]
Code [code]source code[/code]

Emoticons


   






Copyright© Ambiera e.U. all rights reserved.
Privacy Policy | Terms and Conditions | Imprint | Contact