IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 19, 2006, 3:58:18 PM (20 years ago)
Author:
jhoblitt
Message:

stub out -master & -masterframe

File:
1 edited

Legend:

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

    r7158 r7159  
    1616static bool stacframeMode(pxConfig *config);
    1717static bool addmasterMode(pxConfig *config);
     18static bool masterMode(pxConfig *config);
     19static bool masterframeMode(pxConfig *config);
    1820
    1921static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id);
     
    6264        case DETTOOL_MODE_ADDMASTER:
    6365            if (!addmasterMode(config)) {
     66                goto FAIL;
     67            }
     68            break;
     69        case DETTOOL_MODE_MASTER:
     70            if (masterMode(config)) {
     71                goto FAIL;
     72            }
     73            break;
     74        case DETTOOL_MODE_MASTERFRAME:
     75            if (masterframeMode(config)) {
    6476                goto FAIL;
    6577            }
     
    663675    return true;
    664676}
     677
     678static bool masterMode(pxConfig *config)
     679{
     680    PS_ASSERT_PTR_NON_NULL(config, false);
     681    return true;
     682}
     683
     684static bool masterframeMode(pxConfig *config)
     685{
     686    PS_ASSERT_PTR_NON_NULL(config, false);
     687    return true;
     688}
Note: See TracChangeset for help on using the changeset viewer.