Changeset 5061d9 for src/Python
- Timestamp:
- Apr 23, 2021, 9:01:20 PM (5 years ago)
- Branches:
- Candidate_v1.7.0, stable
- Children:
- 0ec9f5
- Parents:
- cd79d0
- git-author:
- Frederik Heber <frederik.heber@…> (04/02/21 09:09:37)
- git-committer:
- Frederik Heber <frederik.heber@…> (04/23/21 21:01:20)
- Location:
- src/Python
- Files:
-
- 1 added
- 3 edited
-
Makefile.am (modified) (1 diff)
-
PythonScripting_impl.hpp (modified) (1 diff)
-
getGraph6String.cpp (added)
-
modules.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Python/Makefile.am
rcd79d0 r5061d9 6 6 Python/getBoundingBox.cpp \ 7 7 Python/getDomainVolume.cpp \ 8 Python/getGraph6String.cpp \ 8 9 Python/getSelectedAtomElements.cpp \ 9 10 Python/getSelectedAtomIds.cpp \ -
src/Python/PythonScripting_impl.hpp
rcd79d0 r5061d9 90 90 "Waits until all currently queued actions have been processed." 91 91 ); 92 boost::python::def< std::string() >( 93 "getGraph6String", 94 MoleCuilder::detail::module_getGraph6String, 95 "returns chemical graph of the current selected set of atoms as graph6 representation." 96 ); 97 boost::python::def< std::string() >( 98 "getElementListAsString", 99 MoleCuilder::detail::module_getElementListAsString, 100 "returns list of elements over the nodes of the graph of the current selected set of atoms." 101 ); 92 102 boost::python::def< MoleCuilder::detail::doubleVec() >( 93 103 "getBoundingBox", -
src/Python/modules.hpp
rcd79d0 r5061d9 14 14 #endif 15 15 16 #include <string> 16 17 #include <vector> 17 18 … … 38 39 double module_getSelectedMolarMass(); 39 40 41 std::string module_getGraph6String(); 42 std::string module_getElementListAsString(); 43 40 44 } /* namespace detail */ 41 45
Note:
See TracChangeset
for help on using the changeset viewer.
