fork download
  1. /*
  2.  * File: main.cc
  3.  * Created on February 12, 2014, 11:05 AM
  4.  */
  5.  
  6. #include <cstdlib>
  7.  
  8. using namespace std;
  9.  
  10. class A {
  11. public:
  12.  
  13. typedef unsigned int ResourceValue;
  14. static const ResourceValue MINIMUM_RESOURCE_VALUE = 0;
  15. static const ResourceValue MAXIMUM_RESOURCE_VALUE = 10000;
  16.  
  17. A() {
  18. }
  19.  
  20. A(const ResourceValue & rv) {
  21. }
  22. };
  23.  
  24. /*
  25.  *
  26.  */
  27. int
  28. main(int argc, char** argv) {
  29.  
  30. A newResources(A::MINIMUM_RESOURCE_VALUE);
  31. return 0;
  32. }
Success #stdin #stdout 0s 3336KB
stdin
Standard input is empty
stdout
Standard output is empty