--- a/src/simulator/event-impl.cc Tue Oct 03 12:21:13 2006 +0200
+++ b/src/simulator/event-impl.cc Fri Oct 06 13:37:25 2006 +0200
@@ -33,24 +33,24 @@
m_cancel (false)
{}
void
-EventImpl::invoke (void)
+EventImpl::Invoke (void)
{
if (!m_cancel) {
- notify ();
+ Notify ();
}
}
void
-EventImpl::setInternalIterator (void *tag)
+EventImpl::SetInternalIterator (void *tag)
{
m_internalIterator = tag;
}
void *
-EventImpl::getInternalIterator (void) const
+EventImpl::GetInternalIterator (void) const
{
return m_internalIterator;
}
void
-EventImpl::cancel (void)
+EventImpl::Cancel (void)
{
m_cancel = true;
}