27 #ifndef VARCONF_PARSEERROR_H
28 #define VARCONF_PARSEERROR_H
30 #include "varconf_defs.h"
40 ParseError(
const std::string& exp,
int line,
int col);
44 VARCONF_API
friend std::ostream& operator<<(std::ostream& os,
const ParseError& p);
46 operator std::string();
47 operator std::string()
const;
51 int m_line{}, m_col{};
54 VARCONF_API std::ostream& operator<<(std::ostream& os,
const ParseError& p);