diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-02-16 15:15:13 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-02-16 15:15:13 +0100 |
commit | bc2e4018054f494fcba01e6a27a63e151bf1e9a4 (patch) | |
tree | 8e5343f4833c0762643e55ff63edfdd685122aad /include/astra/Algorithm.h | |
parent | 46836ee3195fdc8d09a0f03cee13b475b4ff9fc1 (diff) | |
download | astra-bc2e4018054f494fcba01e6a27a63e151bf1e9a4.tar.gz astra-bc2e4018054f494fcba01e6a27a63e151bf1e9a4.tar.bz2 astra-bc2e4018054f494fcba01e6a27a63e151bf1e9a4.tar.xz astra-bc2e4018054f494fcba01e6a27a63e151bf1e9a4.zip |
Refactor AstraObjectManager to add an AstraIndexManager
The new AstraIndexManager can be used to obtain information about objects
without knowing their type.
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 |