#include <OpObserver.h>
Public メソッド | |
void | Add (OpObserver *observer) |
void | NotifyCommit (OpIterator op) |
void | NotifyFlush (OpIterator op) |
OpNotifier () | |
virtual | ~OpNotifier () |
構成 | |
class | NotifyFuncObj |
OpObserver.h の 55 行で定義されています。
OpNotifier::OpNotifier | ( | ) |
OpNotifier::~OpNotifier | ( | ) | [virtual] |
void OpNotifier::Add | ( | OpObserver * | observer | ) |
OpObserver.cpp の 69 行で定義されています。
参照元 Onikiri::OpObserver::OpObserver().
Here is the caller graph for this function:
void OpNotifier::NotifyCommit | ( | OpIterator | op | ) |
OpObserver.cpp の 74 行で定義されています。
参照先 Onikiri::OpObserver::Commit().
参照元 Onikiri::InorderList::NotifyCommit().
00075 { 00076 for_each( 00077 m_observer.begin(), 00078 m_observer.end(), 00079 NotifyFuncObj(op, &OpObserver::Commit) 00080 ); 00081 }
関数の呼び出しグラフ:
Here is the caller graph for this function:
void OpNotifier::NotifyFlush | ( | OpIterator | op | ) |
OpObserver.cpp の 83 行で定義されています。
参照先 Onikiri::OpObserver::Flush().
参照元 Onikiri::InorderList::NotifyFlush().
00084 { 00085 for_each( 00086 m_observer.begin(), 00087 m_observer.end(), 00088 NotifyFuncObj(op, &OpObserver::Flush) 00089 ); 00090 }
関数の呼び出しグラフ:
Here is the caller graph for this function: