Problem using smile classes

The engine.
Post Reply
Warbird
Posts: 9
Joined: Wed May 12, 2010 8:24 pm

Problem using smile classes

Post by Warbird »

My main program looks like this:

#include "smile.h"


int main()
{
DSL_network theNet;
return 0;
};

I basically just want to create a network as starters. I get 95 errors of type:

1>Linking...
1>smile_dbg.lib(samplenodehybrid.obj) : error LNK2001: unresolved external symbol "__declspec(dllimport) public: void __thiscall std::_Container_base::_Orphan_all(void)const " (__imp_?_Orphan_all@_Container_base@std@@QBEXXZ)

What am I doing wrong?
shooltz[BayesFusion]
Site Admin
Posts: 1417
Joined: Mon Nov 26, 2007 5:51 pm

Re: Problem using smile classes

Post by shooltz[BayesFusion] »

Warbird wrote:What am I doing wrong?
Are you sure your Visual Studio version (including service pack) matches the SMILE build you have on the include path?
Warbird
Posts: 9
Joined: Wed May 12, 2010 8:24 pm

Post by Warbird »

I downloaded VC 9.0 SP1 instead and now it works.

thanks!
Post Reply