/*
 * File:   main.cc
 * Created on February 12, 2014, 11:05 AM
 */

#include <cstdlib>
 
using namespace std;
 
class A {
public:
 
    typedef unsigned int ResourceValue;
    static const ResourceValue MINIMUM_RESOURCE_VALUE = 0;
    static const ResourceValue MAXIMUM_RESOURCE_VALUE = 10000;
 
    A() {
    }
 
    A(const ResourceValue & rv) {
    }
};
 
/*
 *
 */
int
main(int argc, char** argv) {
 
    A newResources(A::MINIMUM_RESOURCE_VALUE);
    return 0;
}