diff options
author | Willem Jan Palenstijn <wjp@usecode.org> | 2016-04-15 17:00:31 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <wjp@usecode.org> | 2016-04-15 17:00:31 +0200 |
commit | 80bfa4774a408f109dd49a985a22ff64b08ce1df (patch) | |
tree | 330cce11dfeb228b9df788720b4fdf2c79eb003c /include/astra/Algorithm.h | |
parent | 7633a0f48ce030413642627f16e50d27da4cf709 (diff) | |
parent | 7b8a508f0bc7a8a02766b15fa094dfd18c1b0525 (diff) | |
download | astra-80bfa4774a408f109dd49a985a22ff64b08ce1df.tar.gz astra-80bfa4774a408f109dd49a985a22ff64b08ce1df.tar.bz2 astra-80bfa4774a408f109dd49a985a22ff64b08ce1df.tar.xz astra-80bfa4774a408f109dd49a985a22ff64b08ce1df.zip |
Merge pull request #29 from wjp/indexmanager
Add an AstraIndexManager
Diffstat (limited to 'include/astra/Algorithm.h')
-rw-r--r-- | include/astra/Algorithm.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/astra/Algorithm.h b/include/astra/Algorithm.h index 049417c..18c465f 100644 --- a/include/astra/Algorithm.h +++ b/include/astra/Algorithm.h @@ -81,7 +81,7 @@ public: * * @return initialized */ - bool isInitialized(); + bool isInitialized() const; /** get a description of the class * @@ -133,7 +133,7 @@ private: // inline functions inline std::string CAlgorithm::description() const { return "Algorithm"; }; -inline bool CAlgorithm::isInitialized() { return m_bIsInitialized; } +inline bool CAlgorithm::isInitialized() const { return m_bIsInitialized; } } // end namespace |