File: /home/oboss/Users/gec/sources/Demonstrator/Data_Handling_System/data_handling_system.ads

1     --% Compilation Unit: Data_Handling_System
2     --
3     --% Category: Package Declaration
4     --
5     --% Release:  $Name:  $
6     --
7     --% Version:  $Revision: 2.2 $
8     --
9     --% Author:   $Author: gec $
10     --
11     --% Revision Log:
12     --    $Log: data_handling_system.ads,v $
13     --    Revision 2.2  2004/02/13 16:16:33  gec
14     --    Merged results of Demonstrator development on to main OBOSS trunk.
15     --
16     --    Revision 2.1.8.2  2003/12/18 14:16:36  gec
17     --    Updated Data Handling System application process in accordance with 'OBOSS-III Demonstrator Specification'.
18     --
19     --    Revision 2.1.8.1  2003/12/10 10:12:52  gec
20     --    Restructured Data Handling System application process using child
21     --+    packages.
22     --
23     --
24     --% Project: OBOSS
25     --
26     --% Copyright (C) 2003 by Terma A/S
27     --  Proprietary and intellectual rights of Terma A/S, Denmark,
28     --  are involved in the subject-matter of this material and
29     --  all manufacturing, reproduction, use, disclosure, and
30     --  sales rights pertaining to such subject-matter are
31     --  expressly reserved. This material is submitted for a
32     --  specific purpose as agreed, and the recipient by
33     --  accepting this material agrees that this material will
34     --  not be used, copied, or reproduced in whole or in part
35     --  nor its contents revealed in any manner or to any person,
36     --  except to meet the purpose for which it was submitted and
37     --  subject to the terms of the agreement.
38     --
39     --% Target Dependencies:
40     --    None
41     --% Compiler Dependencies:
42     --    None
43     
44     --~-----------------------------------------------------------------------------
45     
46     with PUS;
47     package Data_Handling_System is
48     
49        --% Library Package:
50        --    Implementation of application process for data handling platform
51        --% Active Tasks:
52        -->   None
53        --% Passive Tasks:
54        -->   None
55     
56     
57        --% Subprogram:
58        --    Handling of packets related to data handling platform
59        --% Parameter Constraints:
60        -->   None
61        --% Exceptions Raised:
62        -->   None
63     
64        procedure Forward_Packet
65              (Packet : in     PUS.PUS_Packet);
66     
67     end Data_Handling_System;
68     
69     --~-----------------------------------------------------------------------------
70