home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / PowerPlant / CDimmerCluster / Dimmer srcs / CDimmerApp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-08-07  |  776 b   |  44 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        CDimmerApp.h
  3.  
  4.     Contains:    Definitions for test harness.
  5.  
  6.     Written by:    Sak Wathanasin
  7.                 Network Analysis Ltd
  8.                 178 Wainbody Ave South
  9.                 Coventry CV3 6BX
  10.                 UK
  11.     Phone:        (+44) 203 419996
  12.     E-mail:        sw@network-analysis-ltd.co.uk
  13.  
  14.     Copyright:    © 1995 Network Analysis Ltd. All rights reserved.
  15.  
  16.     Change History (most recent first):
  17.  
  18.     <1.0>        07/08/95    sw        First public release
  19.  
  20.     To Do:
  21. */
  22.  
  23.  
  24. #pragma once
  25.  
  26. #include <LApplication.h>
  27.  
  28.  
  29. class    CDimmerApp : public LApplication
  30. {
  31. public:
  32.                 CDimmerApp();
  33.     virtual     ~CDimmerApp();
  34.     
  35.     Boolean        ObeyCommand(CommandT inCommand, void *ioParam = nil);
  36.     void        FindCommandStatus(CommandT inCommand,
  37.                             Boolean &outEnabled, Boolean &outUsesMark,
  38.                             Char16 &outMark, Str255 outName);
  39.  
  40. protected:
  41.     virtual void    StartUp();
  42. };
  43.  
  44.