1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | #ifndef STLPLUS_COPY_FUNCTORS #define STLPLUS_COPY_FUNCTORS //////////////////////////////////////////////////////////////////////////////// // Author: Andy Rushton // Copyright: (c) Southampton University 1999-2004 // (c) Andy Rushton 2004 onwards // License: BSD License, see ../docs/license.html // The function constructor classes below are used by the smart_ptr and the // simple_ptr classes. They provide three (well ok, two) copying mechanisms. // These classes have been separated from the smart_ptr header by DJDM, as // the simple_ptr classes now also use them. //////////////////////////////////////////////////////////////////////////////// #include "containers_fixes.hpp" #include "exceptions.hpp" namespace stlplus { //////////////////////////////////////////////////////////////////////////////// // copy functors implementing the three possible copy semantics // constructor_copy uses the copy constructor of the object - used for simple types template < typename T> class constructor_copy { public : T* operator () ( const T& from) { return new T(from); } }; // clone_copy uses the clone method of the object - used for polymorphic types template < typename T> class clone_copy { public : T* operator () ( const T& from) { return from.clone(); } }; // no_copy throws an exception - used for types that cannot be copied template < typename T> class no_copy { // exceptions: illegal_copy public : T* operator () ( const T& from) { throw illegal_copy ( "no_copy functor called" ); return 0; } }; //////////////////////////////////////////////////////////////////////////////// } // end namespace stlplus #endif |