KHolidays Library
Go to the documentation of this file.
40 #ifndef BISON_POSITION_HH
41 # define BISON_POSITION_HH
72 inline void lines (
int count = 1)
83 if (leftmost <= current + count)
101 operator+= (
position& res,
const int width)
108 inline const position
109 operator+ (
const position& begin,
const int width)
111 position res = begin;
116 inline const position&
117 operator-= (position& res,
const int width)
119 return res += -width;
123 inline const position
124 operator- (
const position& begin,
const int width)
126 return begin + -width;
134 operator<< (std::ostream& ostr,
const position& pos)
138 return ostr << pos.line <<
'.' << pos.column;
142 #endif // not BISON_POSITION_HH
This file is part of the KDE documentation.
Documentation copyright © 1996-2013 The KDE developers.
Generated on Sat Jul 13 2013 01:25:09 by
doxygen 1.8.3.1 written
by
Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.