Files
rdkit/Code/GraphMol/Deprotect/Wrap/rdDeprotect.cpp
Brian Kelley 202c863302 [WIP] Deprotection Library (#3294)
* Add deprotection library

* Add copyrights

* Add dll exports

* Fix doc strings, use std::shared_ptr

* Changes for Review

* clang-format

* Fix seg fault and compile issues

* Fix namespace issue

* Add examples to datastructure and use them for testing

* Make the test actually compile and run

* Remove greek character
2020-09-11 05:35:36 +02:00

18 lines
438 B
C++

//
// Copyright (C) 2020 Brian P Kelley
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
#include "rdDeprotect.h"
#include <RDBoost/python.h>
namespace python = boost::python;
void wrap_deprotect();
BOOST_PYTHON_MODULE(rdDeprotect) { wrap_deprotect(); }