So, here is my class and its function:
template <class T>
class cResourceManager
{
public:
bool add(const std::string & key, boost::shared_ptr<T> ptr = nullptr);
private:
std::map <const std::string, boost::shared_ptr<T> > resources;
};
template <class T>
bool cResourceManager<T>::add(const std::string & key, boost::shared_ptr<T> ptr)
{
if (resources.find(key) == resources.end())
{
if(ptr != nullptr) //we have the object
{
resources.insert(std::pair<const std::string, boost::shared_ptr<T>>(key, ptr));
return true;
}
else //we need to load object using sfml loadFromFile
{
T tempResource;
tempResource.loadFromFile(key);
resources.insert(std::pair<const std::string, boost::shared_ptr<T>>(key, new T(tempResource)));
if(resources[key] == nullptr) return false;
else return true;
}
}
}
That class is in static library, it compliles without problem. However, when I use it in normal application:
cResourceManager<sf::Texture> resourceManager;
resourceManager.add("1.PNG");
I get error: error: default argument for parameter of type ‘boost::shared_ptr’ has type ‘std::nullptr_t’
I have no idea what's wrong here, can't shared_ptr have nullptr value? I use g++ 4.7 with -std=c++11
thanks!