IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 7, 2007, 6:17:57 PM (19 years ago)
Author:
jhoblitt
Message:

stub out -inputskyfile

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/magictool.c

    r15500 r15501  
    3535static bool updaterunMode(pxConfig *config);
    3636static bool addinputskyfileMode(pxConfig *config);
     37static bool inputskyfileMode(pxConfig *config);
    3738static bool inputtreeMode(pxConfig *config);
    3839static bool toprocessMode(pxConfig *config);
     
    6869        MODECASE(MAGICTOOL_MODE_UPDATERUN,      updaterunMode);
    6970        MODECASE(MAGICTOOL_MODE_ADDINPUTSKYFILE,addinputskyfileMode);
     71        MODECASE(MAGICTOOL_MODE_INPUTSKYFILE,   inputskyfileMode);
    7072        MODECASE(MAGICTOOL_MODE_INPUTTREE,      inputtreeMode);
    7173        MODECASE(MAGICTOOL_MODE_TOPROCESS,      toprocessMode);
     
    422424    );
    423425
     426    return true;
     427}
     428
     429
     430static bool inputskyfileMode(pxConfig *config)
     431{
     432    PS_ASSERT_PTR_NON_NULL(config, false);
    424433    return true;
    425434}
Note: See TracChangeset for help on using the changeset viewer.