ATLAS Offline Software
Loading...
Searching...
No Matches
jivexmlserver.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
15
17#include <ers/ers.h>
18
19
23int main()
24{
25 //Say hello
26 ERS_INFO("Starting JiveXML server");
27
28 //Create the object and start the server
30
31 //Now wait for the server to finish
32 server.Wait();
33
34 //Leaving the scope will call ~JiveXMLServer and destroy the server
35 //so no explicit shutdown needed
36
37 return 0;
38}
39
int main()
Main routine.