Skip to content
Snippets Groups Projects
Select Git revision
  • 5e5b1d9999dca935151d9a8c36408badf96e2256
  • dev default protected
  • new_pvl_core
  • 8.0-test
  • lts-testing
  • revert-5695-ideal_serial
  • 9.0
  • 9.0.0_RC2
  • 8.0
  • 8.0.5_LTS
  • code8.3.0
  • 9.0.0
  • 9.0.0_RC1
  • gdal_pvl
  • Kelvinrr-patch-3
  • Kelvinrr-patch-2
  • 8.3
  • pvl_core
  • 8.2
  • 8.1
  • Kelvinrr-patch-1
  • 8.0.4
  • 8.3.0
  • 8.2.0
  • 8.1.0
  • 8.0.3
  • 8.0.2
  • 8.0.1
  • 8.0.0
  • 8.1.0_RC2
  • 8.1.0_RC1
  • 8.0.0_RC2
  • 8.0.0_RC1
  • 7.2.0
  • 7.1.0
  • 7.0.0
  • 7.2.0_RC1
  • 7.1.0_RC1
  • 7.0.0_RC2
  • 7.0.0_RC1
  • 6.0.0
41 results

explode.h

Blame
    • kledmundson's avatar
      5e5b1d99
      The explode application has been refactored to be callable and Makefile test... · 5e5b1d99
      kledmundson authored
      The explode application has been refactored to be callable and Makefile test converted to a gtest. (#5590)
      
      * Updated explode application gtest to use DefaultCube fixture instead of cube in isis/tests/data. Addresses #5557.
      
      * Cleaned up includes in default explode gtest. Added history entry to explode.xml. Addresses #5557.
      
      * Updating main.cpp and removed Makefile tests for explode conversion to callable app. Addresses #5557.
      
      * Added CHANGELOG entry for conversion of explode app to callable function. Addresses #5557.
      
      ---------
      
      Co-authored-by: default avatarAdam Paquette <acpaquette@usgs.gov>
      The explode application has been refactored to be callable and Makefile test...
      kledmundson authored
      The explode application has been refactored to be callable and Makefile test converted to a gtest. (#5590)
      
      * Updated explode application gtest to use DefaultCube fixture instead of cube in isis/tests/data. Addresses #5557.
      
      * Cleaned up includes in default explode gtest. Added history entry to explode.xml. Addresses #5557.
      
      * Updating main.cpp and removed Makefile tests for explode conversion to callable app. Addresses #5557.
      
      * Added CHANGELOG entry for conversion of explode app to callable function. Addresses #5557.
      
      ---------
      
      Co-authored-by: default avatarAdam Paquette <acpaquette@usgs.gov>
    explode.h 513 B
    /** This is free and unencumbered software released into the public domain.
    
    The authors of ISIS do not claim copyright on the contents of this file.
    For more details about the LICENSE terms and the AUTHORS, you will
    find files of those names at the top level of this repository. **/
    
    /* SPDX-License-Identifier: CC0-1.0 */
    
    #ifndef explode_h
    #define explode_h
    
    #include "UserInterface.h"
    
    namespace Isis{
      extern void explode(UserInterface &ui);
      extern void explode(Cube *icube, UserInterface &ui);
    }
    
    #endif