summaryrefslogtreecommitdiff
path: root/examples/error.cpp
blob: 54bb17df6c0e99f98527faba8fd64d6d97c2e04f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <file.hpp>
#include <xift.hpp>


int main()
{
    XiftFile exporter(stdout);
    Xift     xift(exporter);

    xift.permitted.Tag("p").Attribute("class");

    xift.PutFile("error.html");

    if (!xift.End()) {
        printf("Error on %d line, %d column:\n%s",
               xift.ErrorLine(), xift.ErrorColumn(), xift.Error());
    }

    return 0;
}