Changeset 840
- Timestamp:
- 08/18/08 22:17:17 (4 months ago)
- Files:
-
- 1 modified
-
trunk/src/las_c_api.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/las_c_api.cpp
r817 r840 1334 1334 in las_config.h to solve Visual C++ compilation (Ticket #23) */ 1335 1335 1336 return strdup(PACKAGE_VERSION); 1336 std::ostringstream output; 1337 1338 // output << LIBLAS_VERSION_MAJOR; 1339 // output << "." << LIBLAS_VERSION_MINOR; 1340 // output << "." << LIBLAS_VERSION_REV; 1341 // output << "." << LIBLAS_VERSION_BUILD; 1342 output << LIBLAS_RELEASE_NAME; 1343 std::string out(output.str()); 1344 return strdup(out.c_str()); 1337 1345 } 1338 1346
