mirror of
https://github.com/schrodinger/pymol-open-source.git
synced 2026-06-06 20:24:23 +08:00
20 lines
284 B
C++
20 lines
284 B
C++
/**
|
|
* @file Python serialization of SymOp
|
|
*
|
|
* (c) Schrodinger, Inc.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "os_python.h"
|
|
|
|
struct PyMOLGlobals;
|
|
|
|
namespace pymol
|
|
{
|
|
struct SymOp;
|
|
}
|
|
|
|
PyObject* PConvToPyObject(pymol::SymOp const&);
|
|
bool PConvFromPyObject(PyMOLGlobals*, PyObject*, pymol::SymOp&);
|