;+
; Project     : SOLAR-B - EIS
;
; Name        : EIS_CPT_PARSE_ORL_ENTRY
;
; Purpose     : Parses an orl entry command.
;
; Explanation : Parses an orl entry command.
;
; Use         : < result = eis_cpt_parse_orl_entry ( operands ) >
;
; Inputs      : operands : STRARR[] operands;
;
; Opt. Inputs : None.
;
; Outputs     : result   : INT flag :
;                            1 : processed OK.
;                            0 : processing failed.
;
; Opt. Outputs: None.
;
; Keywords    : None.
;
; Calls       : None.
;
; Common      : None.
;
; Restrictions: None.
;
; Side effects: May output ASCII files.
;
; Category    : EIS_CPT.
;
; Prev. Hist. : None.
;
; Written     : Martin Carter RAL 11/05/07
;
; Modified    : Version 0.0, 11/05/07, MKC
;
; Version     : 0.0, 11/05/07
;-
;**********************************************************

FUNCTION eis_cpt_parse_orl_entry, operands

  eis_cpt_message, 'ERROR, ENTRY COMMAND NOT SUPPORTED', /INFORMATIONAL

  GOTO, error

  RETURN, 1

error :

  ; issue routine name

  MESSAGE, 'ERROR', /INFORMATIONAL

  ; return error flag

  RETURN, 0

END





