Effective implementation of algorithms (Master Thesis)
Effective and error-free implementation of algorithms
|
00001 #ifndef H_SEARCH_CALLBACK 00002 #define H_SEARCH_CALLBACK 00003 00004 namespace strings { 00005 namespace search_callback { 00006 00010 template<typename _Iterator> 00011 class SearchCallback { 00012 public: 00013 virtual void foundMatch(const _Iterator& start) = 0; 00014 }; 00015 00016 } // namespace search_callback 00017 } // namespace strings 00018 00019 #endif