Warning, file /include/CLHEP/Utility/noncopyable.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #ifndef CLHEP_NONCOPYABLE_H
0002 #define CLHEP_NONCOPYABLE_H
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013 #include "CLHEP/Utility/defs.h"
0014
0015
0016 namespace CLHEP {
0017
0018 class noncopyable
0019 {
0020 protected:
0021 noncopyable () throw () { }
0022 ~noncopyable() throw () { }
0023
0024 private:
0025 noncopyable ( noncopyable const & );
0026 noncopyable & operator = ( noncopyable const & );
0027 };
0028
0029 }
0030
0031 #endif
0032
0033