Eneboo - Documentación para desarrolladores
|
00001 #ifndef _CONFORMANTHEAP_H_ 00002 #define _CONFORMANTHEAP_H_ 00003 00004 namespace Hoard { 00005 00006 // more concise than double declarations when the parent is complex 00007 // and we need the SuperHeap declaration. 00008 template <class Parent> 00009 class ConformantHeap : public Parent { 00010 public: 00011 typedef Parent SuperHeap; 00012 }; 00013 00014 } 00015 00016 #endif