[Liblas-commits] hg: tweak the class a bit more
liblas-commits at liblas.org
liblas-commits at liblas.org
Tue Jan 19 17:19:43 EST 2010
changeset a8e8f0384280 in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=a8e8f0384280
summary: tweak the class a bit more
diffstat:
include/liblas/lasformat.hpp | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diffs (16 lines):
diff -r a55ca271c41e -r a8e8f0384280 include/liblas/lasformat.hpp
--- a/include/liblas/lasformat.hpp Tue Jan 19 16:08:36 2010 -0600
+++ b/include/liblas/lasformat.hpp Tue Jan 19 16:15:19 2010 -0600
@@ -66,8 +66,10 @@
liblas::uint8_t GetVersionMinor() { return m_versionminor; }
void SetVersionMinor(liblas::uint8_t v) {m_versionminor = v; }
- bool HasColor() const;
- bool HasTime() const;
+ bool Color() const {return m_hasColor; }
+ void Color(bool bColor) {m_hasColor = bColor; }
+ bool Time() const { return m_hasTime; }
+ void Time(bool bTime) {m_hasTime = bTime; }
More information about the Liblas-commits
mailing list