[ObjectHandler-cvs] ObjectHandler/Examples/C++ example.cpp,1.2,1.3
Brought to you by:
ericehlers,
nando
From: Ferdinando A. <na...@us...> - 2006-05-25 17:02:19
|
Update of /cvsroot/objecthandler/ObjectHandler/Examples/C++ In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv12155/Examples/C++ Modified Files: example.cpp Log Message: auto_linking Index: example.cpp =================================================================== RCS file: /cvsroot/objecthandler/ObjectHandler/Examples/C++/example.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** example.cpp 25 May 2006 10:45:34 -0000 1.2 --- example.cpp 25 May 2006 17:01:56 -0000 1.3 *************** *** 22,28 **** #ifdef BOOST_MSVC # define BOOST_LIB_DIAGNOSTIC ! # define BOOST_LIB_NAME boost_unit_test_framework ! # include <log4cxx/autolink.hpp> ! # undef BOOST_LIB_NAME # undef BOOST_LIB_DIAGNOSTIC #endif --- 22,26 ---- #ifdef BOOST_MSVC # define BOOST_LIB_DIAGNOSTIC ! # include <oh/auto_link.hpp> # undef BOOST_LIB_DIAGNOSTIC #endif *************** *** 49,53 **** // construct some objects and store them in the object handler ObjHandler::obj_ptr accountObject1(new AccountObject( ! 123456789, "savings")); accountObject1->setProperties( --- 47,51 ---- // construct some objects and store them in the object handler ObjHandler::obj_ptr accountObject1(new AccountObject( ! 123456789, "savings")); accountObject1->setProperties( *************** *** 57,61 **** ObjHandler::obj_ptr accountObject2(new AccountObject( ! 987654321, "current")); accountObject2->setProperties( --- 55,59 ---- ObjHandler::obj_ptr accountObject2(new AccountObject( ! 987654321, "current")); accountObject2->setProperties( |