MCPcopy Create free account
hub / github.com/LAStools/LAStools / close

Method close

LASzip/src/lasunzipper.cpp:95–111  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93}
94
95bool LASunzipper::close()
96{
97 BOOL done = TRUE;
98 if (reader)
99 {
100 done = reader->done();
101 delete reader;
102 reader = 0;
103 }
104 if (stream)
105 {
106 delete stream;
107 stream = 0;
108 }
109 if (!done) return return_error("done() of LASreadPoint failed");
110 return true;
111}
112
113const char* LASunzipper::get_error() const
114{

Callers

nothing calls this directly

Calls 1

doneMethod · 0.45

Tested by

no test coverage detected