00001 /* 00002 * lib/numerics/rng/rng.cc 00003 * 00004 * RNG base class implementations. 00005 * 00006 * Copyright (c) 2004 by Wolfgang Wieser ] wwieser (a) gmx <*> de [ 00007 * 00008 * This file may be distributed and/or modified under the terms of the 00009 * GNU General Public License version 2 as published by the Free Software 00010 * Foundation. (See COPYING.GPL for details.) 00011 * 00012 * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 00013 * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 00014 * 00015 */ 00016 00017 #include "rng.h" 00018 00019 namespace NUM // numerics 00020 { 00021 00022 void RandomNumberGenerator_Base::seed(uint32 /*seed*/) 00023 { 00024 CritAssert(!"OOPS: not implemented."); 00025 } 00026 00027 00028 uint32 RandomNumberGenerator_Base::rand_uint32() 00029 { 00030 CritAssert(!"OOPS: not implemented."); 00031 return(0); 00032 } 00033 00034 } // end of namespace NUM