home
about
news
download
doc
source
systems
tests
bugs
contact
IMP Reference Guide
2.20.0
The Integrative Modeling Platform
IMP Manual
Reference Guide
Tutorial Index
Modules
Classes
Examples
include
IMP
version 2.20.0
InputAdaptor.h
Go to the documentation of this file.
1
/**
2
* \file IMP/InputAdaptor.h
3
* \brief Convenience class to accept multiple input types.
4
*
5
* Copyright 2007-2022 IMP Inventors. All rights reserved.
6
*
7
*/
8
9
#ifndef IMPKERNEL_INPUT_ADAPTOR_H
10
#define IMPKERNEL_INPUT_ADAPTOR_H
11
12
#include <IMP/kernel_config.h>
13
#include "
utility_macros.h
"
14
15
IMPKERNEL_BEGIN_NAMESPACE
16
17
//! Convenience class to accept multiple input types.
18
/** An input adaptor is a convenience class that allows functions to accept a
19
wider variety of inputs than they would otherwise. The InputAdaptor class
20
itself should not be used directly; it is just provided for purposes of
21
documentation.
22
23
Input adaptor classes do not support output, comparisons or hashing.
24
*/
25
class
InputAdaptor
{
26
protected
:
27
InputAdaptor
() {}
28
};
29
30
IMPKERNEL_END_NAMESPACE
31
32
#endif
/* IMPKERNEL_INPUT_ADAPTOR_H */
utility_macros.h
Various general useful macros for IMP.
IMP::InputAdaptor
Convenience class to accept multiple input types.
Definition:
InputAdaptor.h:25