Changeset 4832 for branches/erijo-dev
- Timestamp:
- 01/27/07 07:09:56 (23 months ago)
- Location:
- branches/erijo-dev/licq
- Files:
-
- 2 modified
-
licq/interface/event.h (modified) (1 diff)
-
src/tests/eventtest.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/erijo-dev/licq/licq/interface/event.h
r4829 r4832 65 65 inline bool Licq::IEvent::getProperty(const std::string& key, ValueType* value) const 66 66 { 67 boost::any* valuePtr;67 const boost::any* valuePtr; 68 68 if (!getProperty(key, &valuePtr)) 69 69 return false; -
branches/erijo-dev/licq/src/tests/eventtest.cpp
r4829 r4832 35 35 unsigned int TCopyCounter::Counter = 0; 36 36 37 void test_TEvent()37 BOOST_AUTO_UNIT_TEST( tc_event ) 38 38 { 39 39 Licq::IEventPtr data = Licq::IEvent::create(1, "test-event"); … … 78 78 // added to and retreived from TEventData. Since this depends on the implementation 79 79 // of std::map, this test uses BOOST_WARN_EQUAL instead of BOOST_CHECK_EQUAL. 80 void test_TEventCopy()80 BOOST_AUTO_UNIT_TEST( tc_event_copy ) 81 81 { 82 82 Licq::IEventPtr data = Licq::IEvent::create(1, "test-event");
