Ignore:
Timestamp:
Aug 9, 2010, 7:31:12 PM (15 years ago)
Author:
ansari
Message:

MAJ commentaires pour doxygen, passage methode Next() en pure virtual (=0), Reza 09/08/2010

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/BaseTools/randinterf.cc

    r3791 r3838  
    77#include <time.h>
    88#include <iostream>
     9#include <typeinfo>
     10
    911#include "pexceptions.h"
    1012
     
    6567void RandomGeneratorInterface::ShowRandom()
    6668{
    67   cout<<"RandomGenerator is RandomGeneratorInterface i.e. UNDEFINED"<<endl;
    68 }
    69 
    70 /////////////////////////////////////////////////////////////////////////
    71 /////////////////////////////////////////////////////////////////////////
    72 /////////////////////////////////////////////////////////////////////////
    73 
     69  cout << " RandomGeneratorInterface::ShowRandom() typeid(this)=" << typeid(*this).name() << " @ "
     70       << hex << (unsigned long)(this) << dec << endl;
     71  return;
     72}
     73
     74/////////////////////////////////////////////////////////////////////////
     75/////////////////////////////////////////////////////////////////////////
     76/////////////////////////////////////////////////////////////////////////
     77
     78/*
    7479r_8 RandomGeneratorInterface::Next()
    7580{
     
    7782  throw MathExc("RandomGeneratorInterface::Next(): undefined code !!!");
    7883}
     84*/
    7985
    8086/////////////////////////////////////////////////////////////////////////
Note: See TracChangeset for help on using the changeset viewer.