IMP  2.0.1
The Integrative Modeling Platform
InputAdaptor.h
Go to the documentation of this file.
1 /**
2  * \file IMP/base/InputAdaptor.h \brief Basic types used by IMP.
3  *
4  * Copyright 2007-2013 IMP Inventors. All rights reserved.
5  *
6  */
7 
8 #ifndef IMPBASE_INPUT_ADAPTOR_H
9 #define IMPBASE_INPUT_ADAPTOR_H
10 
11 #include <IMP/base/base_config.h>
12 #include "utility_macros.h"
13 
14 IMPBASE_BEGIN_NAMESPACE
15 /** An input adaptor is a convenience class that allows functions to accept a
16  wider variety of inputs than they would otherwise. The InputAdaptor class
17  itself should not be used directly, it is just provided for purposes of
18  documentation.
19 
20  Input adaptor classes do not support output, comparisons or hashing.
21 */
22 class InputAdaptor {
23 protected:
24  InputAdaptor(){}
25 };
26 IMPBASE_END_NAMESPACE
27 
28 #endif /* IMPBASE_INPUT_ADAPTOR_H */