From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: ** X-Spam-Status: No, score=2.1 required=5.0 tests=BAYES_20,INVALID_MSGID, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,7807efa8b787c793,start X-Google-Attributes: gid103376,public From: coxaw Subject: help on task types Date: 1999/03/03 Message-ID: <36DD8EBF.EAA@rmcs.cranfield.ac.uk>#1/1 X-Deja-AN: 450860888 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=us-ascii Organization: Royal Military College of Science Mime-Version: 1.0 Reply-To: coxaw@rmcs.cranfield.ac.uk Newsgroups: comp.lang.ada Date: 1999-03-03T00:00:00+00:00 List-Id: If I declare a task type that reads input from a file and prints to screen Then instantiate 3 copies of this type can i tell each one to read from a different file ? and how is it done ? ie task type reader_type is blah blah blah end reader; read1:reader_type; read2:reader_type; but read1 is to read from inFile1 and read2 from inFile2