1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- scripts/openbabel-python.i | 34 +++++++++++++++++-----------------
- 1 file changed, 17 insertions(+), 17 deletions(-)
- diff --git a/scripts/openbabel-python.i b/scripts/openbabel-python.i
- index 7cb8f24..d893129 100644
- --- a/scripts/openbabel-python.i
- +++ b/scripts/openbabel-python.i
- @@ -227,7 +227,7 @@ CAST_GENERICDATA_TO(SquarePlanarStereo)
- %include <openbabel/math/transform3d.h>
- %include <openbabel/math/spacegroup.h>
-
- -# CloneData should be used instead of the following method
- +// CloneData should be used instead of the following method
- %ignore OpenBabel::OBBase::SetData;
- %include <openbabel/base.h>
-
- @@ -289,7 +289,7 @@ OBMol.BeginResidues = OBMol.EndResidues = OBMol.BeginResidue = OBMol.EndResidue
- %ignore OpenBabel::OBDescriptor::LessThan;
- %include <openbabel/descriptor.h>
-
- -# Ignore shadowed methods
- +// Ignore shadowed methods
- %ignore OpenBabel::OBForceField::VectorSubtract(const double *const, const double *const, double *);
- %ignore OpenBabel::OBForceField::VectorMultiply(const double *const, const double, double *);
- %include <openbabel/forcefield.h>
- @@ -310,7 +310,7 @@ OBMol.BeginResidues = OBMol.EndResidues = OBMol.BeginResidue = OBMol.EndResidue
-
- %warnfilter(503) OpenBabel::OBBitVec; // Not wrapping any of the overloaded operators
- %include <openbabel/bitvec.h>
- -# Ignore shadowed method
- +// Ignore shadowed method
- %ignore OpenBabel::OBRotor::GetRotAtoms() const;
- %include <openbabel/rotor.h>
- %ignore OpenBabel::Swab;
- @@ -321,13 +321,13 @@ OBMol.BeginResidues = OBMol.EndResidues = OBMol.BeginResidue = OBMol.EndResidue
- %include <openbabel/math/align.h>
- #endif
-
- -# The following %ignores avoid warning messages due to shadowed classes.
- -# This does not imply a loss of functionality as (in this case)
- -# the shadowed class is identical (from the point of view of SWIG) to
- -# the shadowing class.
- -# This is because C++ references (&) are transformed by SWIG back into
- -# pointers, so that OBAtomIter(OBMol &) would be treated the same as
- -# OBAtomIter(OBMol *).
- +// The following %ignores avoid warning messages due to shadowed classes.
- +// This does not imply a loss of functionality as (in this case)
- +// the shadowed class is identical (from the point of view of SWIG) to
- +// the shadowing class.
- +// This is because C++ references (&) are transformed by SWIG back into
- +// pointers, so that OBAtomIter(OBMol &) would be treated the same as
- +// OBAtomIter(OBMol *).
-
- %ignore OBAtomAtomIter(OBAtom &);
- %ignore OBAtomBondIter(OBAtom &);
- @@ -346,9 +346,9 @@ OBMol.BeginResidues = OBMol.EndResidues = OBMol.BeginResidue = OBMol.EndResidue
- %ignore OBResidueIter(OBMol &);
- %ignore OBResidueAtomIter(OBResidue &);
-
- -# These classes are renamed so that they can be replaced by Python
- -# classes of the same name which provide Pythonic iterators
- -# (see %pythoncode section below)
- +// These classes are renamed so that they can be replaced by Python
- +// classes of the same name which provide Pythonic iterators
- +// (see %pythoncode section below)
-
- %rename(_OBAtomAtomIter) OpenBabel::OBAtomAtomIter;
- %rename(_OBAtomBondIter) OpenBabel::OBAtomBondIter;
- @@ -367,8 +367,8 @@ OBMol.BeginResidues = OBMol.EndResidues = OBMol.BeginResidue = OBMol.EndResidue
-
- %include <openbabel/obiter.h>
-
- -# The following class, OBiter, is subclassed to provide Python iterators
- -# equivalent to the C++ iterators in obiter.h and the plugin iterators
- +// The following class, OBiter, is subclassed to provide Python iterators
- +// equivalent to the C++ iterators in obiter.h and the plugin iterators
-
- %pythoncode %{
- class OBIter(object):
- @@ -459,7 +459,7 @@ def double_array(mylist):
- return c
- %}
-
- -# Copy some of the global variables in cvar into the openbabel namespace
- +// Copy some of the global variables in cvar into the openbabel namespace
-
- %pythoncode %{
- obErrorLog = cvar.obErrorLog
- @@ -470,7 +470,7 @@ atomtyper = cvar.atomtyper
- aromtyper = cvar.aromtyper
- %}
-
- -# Functions to set the log file to std::cout and std::cerr
- +// Functions to set the log file to std::cout and std::cerr
-
- %ignore OBForceField::SetLogFile(std::ostream *pos);
- %extend OpenBabel::OBForceField {
|