xnodeconnector_prv.h
1 /***************************************************************************
2  Copyright (C) 2002-2015 Kentaro Kitagawa
3  kitagawa@phys.s.u-tokyo.ac.jp
4 
5  This program is free software; you can redistribute it and/or
6  modify it under the terms of the GNU Library General Public
7  License as published by the Free Software Foundation; either
8  version 2 of the License, or (at your option) any later version.
9 
10  You should have received a copy of the GNU Library General
11  Public License and a list of authors along with this program;
12  see the files COPYING and AUTHORS.
13 ***************************************************************************/
14 #ifndef XNODECONNECTOR_PRV_H_
15 #define XNODECONNECTOR_PRV_H_
16 
17 
18 //! function for creating XQConnector instances
19 template <class T, class A, class B>
20 xqcon_ptr xqcon_create(const shared_ptr<A> &a, B *b) {
21  xqcon_ptr pHolder(new XQConnectorHolder_( new
22  T(a, b)));
23  return pHolder;
24 }
25 //! function for creating XQConnector instances
26 template <class T, class A, class B, typename C>
27 xqcon_ptr xqcon_create(const shared_ptr<A> &a, B *b, C c) {
28  xqcon_ptr pHolder(new XQConnectorHolder_( new
29  T(a, b, c)));
30  return pHolder;
31 }
32 //! function for creating XQConnector instances
33 template <class T, class A, class B, typename C, typename D>
34 xqcon_ptr xqcon_create(const shared_ptr<A> &a, B *b, C c, D d) {
35  xqcon_ptr pHolder(new XQConnectorHolder_( new
36  T(a, b, c, d)));
37  return pHolder;
38 }
39 //! function for creating XQConnector instances
40 template <class T, class A, class B, typename C, typename D, typename E>
41 xqcon_ptr xqcon_create(const shared_ptr<A> &a, B *b, C c, D d, E e) {
42  xqcon_ptr pHolder(new XQConnectorHolder_( new
43  T(a, b, c, d, e)));
44  return pHolder;
45 }
46 
47 #endif /*XNODECONNECTOR_PRV_H_*/

Generated for KAME4 by  doxygen 1.8.3