mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
* 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
18 lines
438 B
C++
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(); }
|