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