|
Boost Users : |
From: feiman (lfeiman888_at_[hidden])
Date: 2006-01-23 07:34:57
when i compile the Following code in vc 8.0,it prints error "LINK : fatal
error LNK1104: cannot open file 'libboost_signals-vc80-mt-s-1_34.lib",how
can i resolv it???
#include <iostream>
#include <boost/signal.hpp>
using namespace boost;
struct HelloWorld
{
void operator () () const
{
std::cout << "test hello world" <<std::endl;
}
};
int main()
{
boost::signal<void ()> sig;
HelloWorld hello;
sig.connect(hello);
sig();
}
Boost-users list run by williamkempf at hotmail.com, kalb at libertysoft.com, bjorn.karlsson at readsoft.com, gregod at cs.rpi.edu, wekempf at cox.net