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?
			
			
									
						
										
						Problem using smile classes
- 
				shooltz[BayesFusion]
- Site Admin
- Posts: 1477
- Joined: Mon Nov 26, 2007 5:51 pm
Re: Problem using smile classes
Are you sure your Visual Studio version (including service pack) matches the SMILE build you have on the include path?Warbird wrote:What am I doing wrong?