IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 5, 2006, 2:46:33 PM (20 years ago)
Author:
jhoblitt
Message:

stub out -resid

File:
1 edited

Legend:

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

    r7351 r7352  
    2424static bool normalizedframeMode(pxConfig *config);
    2525static bool addresidMode(pxConfig *config);
     26static bool residMode(pxConfig *config);
    2627
    2728static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id);
     
    9596        case DETTOOL_MODE_ADDRESID:
    9697            if (addresidMode(config)) {
     98                goto FAIL;
     99            }
     100            break;
     101        case DETTOOL_MODE_RESID:
     102            if (residMode(config)) {
    97103                goto FAIL;
    98104            }
     
    14491455    return true;
    14501456}
     1457
     1458static bool residMode(pxConfig *config)
     1459{
     1460    PS_ASSERT_PTR_NON_NULL(config, false);
     1461    return true;
     1462}
Note: See TracChangeset for help on using the changeset viewer.