random.cpp 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /*! ========================================================================
  2. ** Extended Template and Library Test Suite
  3. ** Angle Class Test
  4. **
  5. ** Copyright (c) 2002 Robert B. Quattlebaum Jr.
  6. **
  7. ** This package is free software; you can redistribute it and/or
  8. ** modify it under the terms of the GNU General Public License as
  9. ** published by the Free Software Foundation; either version 2 of
  10. ** the License, or (at your option) any later version.
  11. **
  12. ** This package is distributed in the hope that it will be useful,
  13. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. ** General Public License for more details.
  16. **
  17. ** === N O T E S ===========================================================
  18. **
  19. ** ========================================================================= */
  20. #include <ETL/random>
  21. using namespace etl;
  22. int random_basic_test(void)
  23. {
  24. int ret = 0;
  25. random<int> Rand;
  26. return ret;
  27. }
  28. int main()
  29. {
  30. int error = 0;
  31. return error;
  32. }