IMP
2.1.0
The Integrative Modeling Platform
IMP Mainpage
All IMP Modules
Related Pages
Modules
Namespaces
Classes
Files
Examples
Indexes
File List
File Members
IMP
All IMP Modules
All IMP Modules and Applications
Argument Index
Class Examples
Factory Index
Function Examples
Design example
Developer Guide
Installation
Introduction
Mailing lists
ChangeLog
Tools
Dependencies
EMageFit protocol
EMageFit scripts and tools
Integrative docking utility programs
Deprecated List
Modules
Namespaces
Classes
Files
File List
File Members
Examples
Indexes
Class Usage
Class Examples
Class Factories
Function Examples
base/swig_macros.h
Go to the documentation of this file.
1
/**
2
* \file IMP/base/swig_macros.h
3
* \brief Various general useful macros for IMP.
4
*
5
* Copyright 2007-2013 IMP Inventors. All rights reserved.
6
*
7
*/
8
9
#ifndef IMPBASE_SWIG_MACROS_H
10
#define IMPBASE_SWIG_MACROS_H
11
#include <IMP/base/base_config.h>
12
13
#if defined(SWIG)
14
#define IMP_NO_SWIG(x)
15
#else
16
//! Hide the line when SWIG is compiled or parses it
17
/** */
18
#define IMP_NO_SWIG(x) x
19
#endif
20
21
#endif
/* IMPBASE_SWIG_MACROS_H */