Hi all,
I added a class named RandomVariableGenerator with the following functions in the .h file
static double GetRandomNumber(void);
static double GetExponential(double beta);
static double GetUnifrom(double a, double b);
but after building them i got the following errors:
Error 1 error LNK2020: unresolved token (06000002) RandomVariableGenerator::GetRandomNumber
Error 3 error LNK2020: unresolved token (06000003) RandomVariableGenerator::GetExponential
Error 6 error LNK2020: unresolved token (06000004) RandomVariableGenerator::GetUnifrom
Thanks in advance...