File: custom.cpp

package info (click to toggle)
gemmi 0.5.7%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,344 kB
  • sloc: cpp: 48,972; python: 4,352; ansic: 3,428; sh: 302; makefile: 69; f90: 42; javascript: 12
file content (9 lines) | stat: -rw-r--r-- 195 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
// An empty file that makes easier to add custom functions.
//

#include "common.h"  // it includes <pybind11/pybind11.h>
namespace py = pybind11;

void add_custom(py::module& m) {
  (void) m;
}