Go to the source code of this file.
Classes | |
| class | Sundance::OrderedHandle< PointerType > |
Namespaces | |
| namespace | Sundance |
| namespace | std |
Defines | |
| #define | ORDERED_HANDLE_CTORS(handle, contents) |
| #define ORDERED_HANDLE_CTORS | ( | handle, | |||
| contents | ) |
Value:
/** Empty ctor */ \ handle() : OrderedHandle<contents >() {;} \ /** Construct a #handle with a raw pointer to a #contents */ \ handle(Playa::Handleable<contents >* rawPtr) : OrderedHandle<contents >(rawPtr) {;} \ /** Construct a #handle with a smart pointer to a #contents */ \ handle(const RCP<contents >& smartPtr) : OrderedHandle<contents >(smartPtr){;}
Definition at line 39 of file SundanceOrderedHandle.hpp.