File: simple.cpp

package info (click to toggle)
gridtools 2.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 21,728 kB
  • sloc: cpp: 45,263; python: 9,383; javascript: 8,445; ansic: 2,564; sh: 509; f90: 370; makefile: 216
file content (20 lines) | stat: -rw-r--r-- 542 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * GridTools
 *
 * Copyright (c) 2014-2019, ETH Zurich
 * All rights reserved.
 *
 * Please, refer to the LICENSE file in the root directory.
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <cpp_bindgen/export.hpp>
#include <iostream>

// In this example, we demonstrate how the cpp_bindgen library can be used to export functions to C and Fortran.

namespace {
    void print_number(int i) { std::cout << "Printing from C++: " << i << std::endl; }

    BINDGEN_EXPORT_BINDING_1(print_number_from_cpp, print_number);
} // namespace