Generated on Mon Jun 23 16:24:56 2008 for BIU-1.7.0 by doxygen 1.5.1

src/biu/util/biu-string.h

Go to the documentation of this file.
00001 #ifndef BIUSTRING_HH_
00002 #define BIUSTRING_HH_
00003 
00004 /* **********************************
00005  *  BioInformatics Utilities
00006  * **********************************
00007  *  String tool library
00008  * **********************************
00009  * 
00010  * 
00011  * *********************************/
00012 
00013 
00014 #include <string>
00015 #include <iostream>
00016 
00017 namespace biu {
00018   namespace util {
00019 
00020     /************************************************************
00021      * search in a target all occurrences of query and writes 
00022      * them to the given out stream
00023      ***********************************************************/
00024     bool findQueryString(std::string target, std::string query, 
00025         std::ostream & out = std::cout);    
00026 
00027   } // namespace util   
00028 }  // namespace biu
00029 
00030 #endif /*BIUSTRING_HH_*/