Mantid
Loading...
Searching...
No Matches
DllConfig.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2015 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
7#pragma once
8
9/*
10 This file contains the DLLExport/DLLImport linkage configuration for the
11 Python _kernel library
12
13 @author Martyn Gigg, Tessella plc
14*/
15#include "MantidKernel/System.h"
16
17#ifdef PythonKernelModule_EXPORTS
18#define PYTHON_KERNEL_DLL DLLExport
19#else
20#define PYTHON_KERNEL_DLL DLLImport
21#endif