00001 // 00002 // Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2004-2008 00003 // 00004 // Copyright: See COPYING file that comes with this distribution 00005 // 00006 00007 #ifndef MATCHINGPARAMETERS_H_ 00008 #define MATCHINGPARAMETERS_H_ 00009 00010 namespace srchilite { 00011 00016 struct MatchingParameters { 00018 bool beginningOfLine; 00019 00020 MatchingParameters() : 00021 beginningOfLine(true) { 00022 } 00023 }; 00024 00025 } 00026 00027 #endif /*MATCHINGPARAMETERS_H_*/