1#ifndef UID_IDL
2#define UID_IDL
3
4//***************************************************************
5  //*      APPROVED via RFC N01-0268 on 6 August 2001
6//***************************************************************
7
8// *************************************************************
9//*
10//*         The USIGS Universal Product Identifier
11//*         Specification
12//*
13//*
14//*     Description: Defines a universal USIGS product
15//*     identification.
16//*
17//*
18//*     History:
19//*     Date            Author   Comment
20//*     -----           ------   --------
21//*     29 Sept 98       J. Baldo and D. Lutz  Initial release for
22//*                      review.
23//*
24//*     Notes
25//*     -------
26//*     NONE
27//*
28//*
29// *************************************************************
30module UID
31{
32interface Product
33  {
34  };
35
36typedef sequence < Product > ProductList;
37};
38#endif
39