Skip to content
Snippets Groups Projects
Unverified Commit 9f307d73 authored by Xavier Robin's avatar Xavier Robin
Browse files

reorder/group related definitions

parent 7823f919
No related branches found
No related tags found
No related merge requests found
......@@ -43,16 +43,16 @@ void export_AtomView()
.add_property("chain",get_chain)
.def(self==self)
.def(self!=self)
.add_property("handle", &AtomView::GetHandle)
.def("RemoveBonds", &AtomView::RemoveBonds)
.def("GetHandle", &AtomView::GetHandle)
.add_property("handle", &AtomView::GetHandle)
.def("GetBondCount", &AtomView::GetBondCount)
.add_property("valid", &AtomView::IsValid)
.def("GetBondList", &AtomView::GetBondList)
.def("GetHashCode", &AtomView::GetHashCode)
.def("IsValid", &AtomView::IsValid)
.def("__hash__", &AtomView::GetHashCode)
.add_property("hash_code", &AtomView::GetHashCode)
.def("IsValid", &AtomView::IsValid)
.add_property("valid", &AtomView::IsValid)
.def("GetBondPartners", &AtomView::GetBondPartners)
;
class_<AtomViewList>("AtomViewList", init<>())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment