ATLAS Offline Software
Loading...
Searching...
No Matches
texpat.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3*/
4
5
6
7#include "ExpatCoreParser.h"
8
9int main (int /*argc*/, char* argv[])
10{
11 std::unique_ptr<CoreParser::DOMNode> doc = ExpatCoreParser::parse (argv[1]);
12
13 if (doc != 0) doc->print ("============ ALL =============");
14
15 return (0);
16}
static std::unique_ptr< CoreParser::DOMNode > parse(const std::string &file_name)
int main()
Definition hello.cxx:18