1. -- 
  2. -- Copyright (c) 2012 Kevin Wellwood 
  3. -- All rights reserved. 
  4. -- 
  5. -- This source code is distributed under the Modified BSD License. For terms and 
  6. -- conditions, see license.txt. 
  7. -- 
  8.  
  9. package Version is 
  10.  
  11.     -- Returns release version which has three components: major.minor.bugfix 
  12.     function Release return String; 
  13.  
  14.     -- Returns the copyright date as the four digit year the executable was built. 
  15.     function Copyright_Year return String; 
  16.  
  17. end Version;