[Liblas-commits] hg: sync w/ factory changes

liblas-commits at liblas.org liblas-commits at liblas.org
Fri Dec 17 23:31:42 EST 2010


changeset 3e949cc11eba in /Volumes/Data/www/liblas.org/hg
details: http://hg.liblas.orghg?cmd=changeset;node=3e949cc11eba
summary: sync w/ factory changes

diffstat:

 apps/lasinfo.cpp |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r 0d9e89f22e0f -r 3e949cc11eba apps/lasinfo.cpp
--- a/apps/lasinfo.cpp	Fri Dec 17 20:24:35 2010 -0800
+++ b/apps/lasinfo.cpp	Fri Dec 17 20:31:38 2010 -0800
@@ -172,7 +172,7 @@
                 return 1;
             }
             liblas::ReaderFactory f;
-            liblas::Reader reader = f.Create(ifs);
+            liblas::Reader reader = f.CreateWithStream(ifs);
             header = reader.GetHeader();
         } else {
             std::cerr << "Input LAS file not specified!\n";
@@ -192,7 +192,7 @@
     
 
         liblas::ReaderFactory f;
-        liblas::Reader reader = f.Create(ifs);
+        liblas::Reader reader = f.CreateWithStream(ifs);
         if (show_point)
         {
             try 


More information about the Liblas-commits mailing list