![]() |
Reference Documentation |
00001 // -*- C++ -*- 00002 00003 // 00004 // Copyright (C) CERN, Geneva 00005 // 00006 // IRandomGenerator interface 00007 // 00008 // Author: Max Sang 00009 // Created: 16 May 2001 00010 // 00011 00012 00013 00014 #ifndef INTERFACE_IRANDOMGENERATOR_H 00015 #define INTERFACE_IRANDOMGENERATOR_H 00016 00017 00018 00019 class IRandomGenerator 00020 { 00021 public: 00023 virtual double next(void) = 0; 00024 00025 public: 00026 virtual ~IRandomGenerator() { } 00027 }; 00028 00029 00030 00031 #endif /* INTERFACE_IRANDOMGENERATOR_H */ 00032 00033 00034
Anaphe documentation generated by Doxygen (www.doxygen.org) |