Source-highlight Library
matchingparameters.h
1//
2// Author: Lorenzo Bettini <http://www.lorenzobettini.it>, (C) 2004-2008
3//
4// Copyright: See COPYING file that comes with this distribution
5//
6
7#ifndef MATCHINGPARAMETERS_H_
8#define MATCHINGPARAMETERS_H_
9
10namespace srchilite {
11
16struct MatchingParameters {
19
20 MatchingParameters() :
21 beginningOfLine(true) {
22 }
23};
24
25}
26
27#endif /*MATCHINGPARAMETERS_H_*/
C++ class: doctemplate.h.
Definition bufferedoutput.cpp:13
bool beginningOfLine
whether we are inspecting the beginning of a line
Definition matchingparameters.h:18