summaryrefslogtreecommitdiff
path: root/xsd-examples/cxx/tree/custom/wildcard/driver.cxx
blob: 43fae82596448e84d766769b1b635a7a9dea6b98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// file      : cxx/tree/custom/wildcard/driver.cxx
// copyright : not copyrighted - public domain

#include <memory>   // std::unique_ptr
#include <iostream>

#include "wildcard.hxx"

using std::cerr;
using std::endl;

int
main (int argc, char* argv[])
{
  if (argc != 2)
  {
    cerr << "usage: " << argv[0] << " wildcard.xml" << endl;
    return 1;
  }

  try
  {
    using namespace wildcard;

    // Parse.
    //
    std::unique_ptr<data> d (data_ (argv[1]));

    // Print.
    //
    cerr << *d << endl;

    // Serialize.
    //
    xml_schema::namespace_infomap map;

    map["wc"].name = "http://www.codesynthesis.com/wildcard";
    map["wc"].schema = "wildcard.xsd";

    data_ (std::cout, *d, map);
  }
  catch (const xml_schema::exception& e)
  {
    cerr << e << endl;
    return 1;
  }
}