aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-08-05 11:38:34 +0000
committerlloyd <[email protected]>2006-08-05 11:38:34 +0000
commit9b6d086eb20b08efbbc63cfbe70b61647fc27f2f (patch)
tree73ec49b82ee8417c780c249a403b540016f9daab /include
parent1942fdac5ccad80b42f23083e2f8c8e1281989b3 (diff)
Make it possible to insert Engines into the front of the queue;
otherwise any Engines added after startup (eg, application-specific ones) would only be used for new algorithm - it wouldn't be possible for them to override existing implementations.
Diffstat (limited to 'include')
-rw-r--r--include/libstate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libstate.h b/include/libstate.h
index 951cdf57e..5bfb4018d 100644
--- a/include/libstate.h
+++ b/include/libstate.h
@@ -47,7 +47,7 @@ class Library_State
class Config& config() const;
- void add_engine(class Engine*);
+ void add_engine(class Engine*, bool);
class Mutex* get_mutex() const;
class Mutex* get_named_mutex(const std::string&);