Archived

This forum has been archived. Please start a new discussion on GitHub.

mfcapp break down

I have test IceStorm demo(clock),and I write class XiangQi refrence Clock,
and test success.

then I create mfc project (single document)by(.net2003),add class XiangQi to project,
add publisher.cpp and make some modify,
when I test mfc programe,break down!
after debug ,I find error take place at

IceStorm::TopicPrx topic;
try
{
topic = manager->retrieve("time");//////break
}
catch(const IceStorm::NoSuchTopic& e)
{
// cerr << appName() << ": " << e << " name: " << e.name << endl;
return EXIT_FAILURE;
}


the same code run success in ClockC project

can you help me out

project

Comments