CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/CondFormats/DTObjects/src/DTBufferInit.cc

Go to the documentation of this file.
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;