Skip to content
Snippets Groups Projects
Select Git revision
  • 14e720b30155cedd10da86c6d278a565fd4f46ee
  • master default protected
  • v0.2.1-devel
  • v0.2.1
4 results

GroupsWriter.java

Blame
  • 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