use boost::noncopyable

This commit is contained in:
Artem Pavlenko 2005-12-23 12:23:15 +00:00
parent 30c713d639
commit 5e2aa3fc60

View file

@ -23,10 +23,11 @@
#include <ltdl.h>
#include <string>
#include <boost/utility.hpp>
namespace mapnik
{
class PluginInfo
class PluginInfo : boost::noncopyable
{
private:
std::string name_;
@ -37,9 +38,6 @@ namespace mapnik
~PluginInfo();
const std::string& name() const;
lt_dlhandle handle() const;
private:
PluginInfo(const PluginInfo&);
PluginInfo& operator=(const PluginInfo&);
};
}