Public Member Functions | |
DTBufferInit () |
Definition at line 12 of file DTBufferInit.cc.
DTBufferInit::DTBufferInit | ( | ) | [inline] |
Definition at line 15 of file DTBufferInit.cc.
References DTDataBuffer< Key, Content >::dropBuffer(), and DTBufferTree< Key, Content >::setDefault().
00015 { 00016 // DTDataBuffer< int, int > db_int_int; 00017 // DTDataBuffer< int, std::vector<int>* > db_int_pvec_int; 00018 DTDataBuffer< int, int >::dropBuffer( " " ); 00019 DTDataBuffer< int, std::vector<int>* >::dropBuffer( " " ); 00020 DTBufferTree< int, int >::setDefault( 0 ); 00021 DTBufferTree< int, std::vector<int>* >::setDefault( 0 ); 00022 /* 00023 DTBufferTree< int, int > bt_int_int; 00024 DTBufferTree< int, std::vector<int>* > bt_int_pvec_int; 00025 int x_int_int; 00026 std::vector<int>* x_int_pvec_int; 00027 int 00028 status = bt_int_int .find( 0, x_int_int ); 00029 status = bt_int_pvec_int.find( 0, x_int_pvec_int ); 00030 */ 00031 }