00001 #include "CondFormats/DTObjects/interface/DTBufferTree.h" 00002 #include <vector> 00003 00004 template<class Key, class Content> 00005 Content DTBufferTree<Key,Content>::defaultContent; 00006 00007 class DTBufferInit { 00008 public: 00009 // private: 00010 DTBufferInit() { 00011 DTBufferTree< int, int >::setDefault( 0 ); 00012 DTBufferTree< int, std::vector<int>* >::setDefault( 0 ); 00013 } 00014 }; 00015 00016 DTBufferInit bufferInit;