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/Projector2D.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/Projector2D.h')
-rw-r--r-- | include/astra/Projector2D.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/astra/Projector2D.h b/include/astra/Projector2D.h index a1ea0ce..c7a899d 100644 --- a/include/astra/Projector2D.h +++ b/include/astra/Projector2D.h @@ -174,7 +174,7 @@ public: * * @return initialized successfully */ - bool isInitialized(); + bool isInitialized() const; /** get a description of the class * @@ -191,7 +191,7 @@ private: }; // inline functions -inline bool CProjector2D::isInitialized() { return m_bIsInitialized; } +inline bool CProjector2D::isInitialized() const { return m_bIsInitialized; } inline CProjectionGeometry2D* CProjector2D::getProjectionGeometry() { return m_pProjectionGeometry; } inline CVolumeGeometry2D* CProjector2D::getVolumeGeometry() { return m_pVolumeGeometry; } |