home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 6 B / CHIP_HITWARE6_B.iso / biuro / BaseCalculator / Sources / BaseCalc.dpr < prev    next >
Text File  |  1996-11-06  |  2KB  |  62 lines

  1. program BaseCalc;
  2.  
  3. {************************************************************************
  4. *                                                                       *
  5. *                         Base Calculator Program                       *
  6. *                    Copyright (C) 1996, John Zaitseff                  *
  7. *                                                                       *
  8. ************************************************************************}
  9.  
  10. { Author:    John Zaitseff <J.Zaitseff@unsw.edu.au>
  11.   Date:      6th November, 1996.
  12.   Version:   1.2
  13.  
  14.   This file is the main program file for the Base Calculator.  The Base
  15.   Calculator is a base integer calculator (ie, one that operates in
  16.   decimal, hexadecimal, binary or octal), in either 8, 16 or 32 bit size.
  17.  
  18.   This program is free software, and may be distributed and/or modified
  19.   under the terms of the GNU General Public License as published by the
  20.   Free Software Foundation; either Version 2 of the License or any later
  21.   version.
  22.  
  23.   This program is distributed in the hope that it will be useful,
  24.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  25.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  26.   General Public License for more details.
  27.  
  28.   You should have received a copy of the GNU General Public License
  29.   along with this program (in the file LICENSE.TXT); if not, write to:
  30.             Free Software Foundation, Inc.,
  31.             675 Mass Ave, Cambridge, MA 02139, USA.
  32.  
  33.   Please feel free to send any comments, suggestions, corrections and
  34.   enhancements to:
  35.  
  36.   Postal:   John Zaitseff,
  37.             4 McCabe Close,
  38.             Menai, NSW, 2234,
  39.             Australia.
  40.   Email:    J.Zaitseff@unsw.edu.au
  41.  
  42. }
  43.  
  44. uses
  45.   Forms,
  46.   BCalcWin in 'BCalcWin.pas' {BaseCalcWin},
  47.   About in 'About.pas' {AboutWin},
  48.   Value in 'Value.pas' {ValueWin},
  49.   Calc in 'Calc.pas';
  50.  
  51. {$R *.RES}
  52.  
  53. begin  { Main }
  54.   Application.Initialize;
  55.   Application.Title := 'Base Calculator';
  56.   Application.HelpFile := 'BASECALC.HLP';
  57.   Application.CreateForm(TBaseCalcWin, BaseCalcWin);
  58.   Application.CreateForm(TAboutWin, AboutWin);
  59.   Application.CreateForm(TValueWin, ValueWin);
  60.   Application.Run;
  61. end.
  62.