IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 6, 2006, 5:52:27 PM (20 years ago)
Author:
jhoblitt
Message:

stub out -master

File:
1 edited

Legend:

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

    r7379 r7387  
    2929static bool addmasterframeMode(pxConfig *config);
    3030static bool masterframeMode(pxConfig *config);
     31static bool masterMode(pxConfig *config);
    3132
    3233static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id);
     
    6364        MODECASE(DETTOOL_MODE_ADDMASTERFRAME, addmasterframeMode);
    6465        MODECASE(DETTOOL_MODE_MASTERFRAME, masterframeMode);
     66        MODECASE(DETTOOL_MODE_MASTER, masterMode);
    6567        default:
    6668            psAbort(argv[0], "invalid option (this should not happen)");
     
    17041706    return true;
    17051707}
     1708
     1709static bool masterMode(pxConfig *config)
     1710{
     1711    PS_ASSERT_PTR_NON_NULL(config, false);
     1712    return true;
     1713}
Note: See TracChangeset for help on using the changeset viewer.