Skip to content

Commit

Permalink
ENGINES: Mark Engine as noncopyable
Browse files Browse the repository at this point in the history
  • Loading branch information
DrMcCoy committed Oct 23, 2016
1 parent b1059f7 commit 457ea3b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/engines/engine.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@

#include <vector>

#include <boost/noncopyable.hpp>

#include "src/common/ustring.h"

#include "src/aurora/types.h"
Expand All @@ -43,7 +45,7 @@ namespace Engines {
class Console;

/** The base class for an engine within BioWare's Aurora family. */
class Engine {
class Engine : boost::noncopyable {
public:
Engine();
virtual ~Engine();
Expand Down

0 comments on commit 457ea3b

Please sign in to comment.