-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpythonForwardDeclarations.hpp
More file actions
37 lines (31 loc) · 1 KB
/
pythonForwardDeclarations.hpp
File metadata and controls
37 lines (31 loc) · 1 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
33
34
35
36
37
/*
*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* Copyright (c) 2019, Lawrence Livermore National Security, LLC.
*
* Produced at the Lawrence Livermore National Laboratory
*
* LLNL-CODE-746361
*
* All rights reserved. See COPYRIGHT for details.
*
* This file is part of the GEOSX Simulation Framework.
*
* GEOSX is a free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License (as published by the
* Free Software Foundation) version 2.1 dated February 1999.
*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
*/
/**
* @file pythonForwardDeclarations.hpp
* @brief Forward declarations of Python Objects.
* @note Taken from https://mail.python.org/pipermail/python-dev/2003-August/037601.html
*/
#pragma once
/// @cond DO_NOT_DOCUMENT
#ifndef PyObject_HEAD
struct _object;
typedef _object PyObject;
struct _typeobject;
typedef _typeobject PyTypeObject;
#endif
/// @endcond DO_NOT_DOCUMENT