struct axl::lex::LineCol

#include <axl_lex_SrcPos.h>

struct LineCol
{
    // fields

    int m_line;
    int m_col;

    // construction

    LineCol();

    LineCol(
        int line,
        int col
        );

    // methods

    void
    clear();

    void
    count(const sl::StringRef& string);

    void
    incrementalCount(const sl::StringRef& string);
};