You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _RESOURCES_HPP_
|
|
#define _RESOURCES_HPP_
|
|
|
|
#include <iostream>
|
|
#include "iresource_lock.hpp"
|
|
|
|
class Resources
|
|
{
|
|
public:
|
|
Resources();
|
|
~Resources();
|
|
|
|
//void use();
|
|
void print(const int& number);
|
|
private:
|
|
ResourceLock* pLock;
|
|
|
|
|
|
};
|
|
|
|
#endif // _RESOURCES_HPP_
|