Advertisement
Guest User

result_type

a guest
Jun 28th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.28 KB | None | 0 0
  1. #ifndef math_api_random_number
  2. #define math_api_random_number
  3.  
  4. #include "math/API.hpp"
  5.  
  6. class math::API::random_number{
  7. public:
  8.  
  9.   virtual ~random_number(){}
  10.  
  11.   virtual double operator()() = 0;
  12.  
  13.   virtual result_type min();
  14.  
  15.   virtual result_type max();
  16.  
  17. };
  18.  
  19. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement