IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 18, 2006, 11:43:49 AM (20 years ago)
Author:
jhoblitt
Message:

stub out -stackedframe

File:
1 edited

Legend:

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

    r7145 r7146  
    1414static bool addstacMode(pxConfig *config);
    1515static bool stacMode(pxConfig *config);
     16static bool stacframeMode(pxConfig *config);
    1617
    1718static detInputExpRow *rawDetrenTodetInputExpRow(rawDetrendExpRow *rawExp, psS32 det_id);
     
    5051        case DETTOOL_MODE_STACKED:
    5152            if (!stacMode(config)) {
     53                goto FAIL;
     54            }
     55            break;
     56        case DETTOOL_MODE_STACKEDFRAME:
     57            if (!stacframeMode(config)) {
    5258                goto FAIL;
    5359            }
     
    429435    return true;
    430436}
     437
     438static bool stacframeMode(pxConfig *config)
     439{
     440    PS_ASSERT_PTR_NON_NULL(config, false);
     441
     442    return true;
     443}
Note: See TracChangeset for help on using the changeset viewer.