OpenSDN source code
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
xml_base.cc
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #include "xml/xml_base.h"
6 #include "xml/xml_pugi.h"
7 
9 
11  return new XmlPugi();
12 }
13 
15  delete tmp;
16 }
17 
19  if (Inst_ == NULL)
20  Inst_ = new XmppXmlImplFactory();
21  return Inst_;
22 }
static XmppXmlImplFactory * Inst_
Definition: xml_base.h:100
void ReleaseXmlImpl(XmlBase *tmp)
Definition: xml_base.cc:14
XmlBase * GetXmlImpl()
Definition: xml_base.cc:10
static XmppXmlImplFactory * Instance()
Definition: xml_base.cc:18