forked from root-project/root
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPyROOTPythonize.h
More file actions
32 lines (21 loc) · 1.11 KB
/
PyROOTPythonize.h
File metadata and controls
32 lines (21 loc) · 1.11 KB
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
// Author: Enric Tejedor CERN 06/2018
// Original PyROOT code by Wim Lavrijsen, LBL
/*************************************************************************
* Copyright (C) 1995-2018, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef PYROOT_PYTHONIZE_H
#define PYROOT_PYTHONIZE_H
#include <Python.h>
namespace PyROOT {
PyObject *AddCPPInstancePickling(PyObject *self, PyObject *args);
PyObject *AddPrettyPrintingPyz(PyObject *self, PyObject *args);
PyObject *GetBranchAttr(PyObject *self, PyObject *args);
PyObject *BranchPyz(PyObject *self, PyObject *args);
PyObject *AddTClassDynamicCastPyz(PyObject *self, PyObject *args);
PyObject *CPPInstanceExpand(PyObject *self, PyObject *args);
} // namespace PyROOT
#endif // !PYROOT_PYTHONIZE_H