Garfield++ v1r0
A toolkit for the detailed simulation of particle detectors based on ionisation measurement in gases and semiconductors
Loading...
Searching...
No Matches
inlinec.h
Go to the documentation of this file.
1#ifndef INLINEC_H
2#define INLINEC_H
3
4/* It this file the specification "inline" is made controlled, that is
5it can dissapear from the code if macro WCPPLIB_NO_INLINE is defined
6and if instead of "inline" the user use "wl_inline" statement.
7*/
8//#define WCPPLIB_NO_INLINE
9
10#ifdef WCPPLIB_NO_INLINE
11#undef WCPPLIB_INLINE
12#define wl_inline
13#else
14#define WCPPLIB_INLINE
15#define wl_inline inline
16#endif
17
18#endif