home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------------------------------
- //
- // DigitalClockInspector
- //
- // Inherits From: ClockInspector
- //
- // Declared In: DigitalClockInspector.h
- //
- // Class Description
- //
- // DigitalClockInspector manages IB Attributes inspection for
- // an instance of the DigitalClock class.
- //
- //
- // Disclaimer
- //
- // You may freely copy, distribute and reuse this software and its
- // associated documentation. I disclaim any warranty of any kind,
- // expressed or implied, as to its fitness for any particular use.
- //
- //----------------------------------------------------------------------------------------------------
- #import <appkit/appkit.h>
- #import <apps/InterfaceBuilder.h>
- #import "ClockInspector.h"
-
-
- @interface DigitalClockInspector:ClockInspector
- {
- id timecolor;
- id datecolor;
- }
-
- //----------------------------------------------------------------------------------------------------
- // Setting Attributes
- //----------------------------------------------------------------------------------------------------
- - setTimeColor: sender;
- - setDateColor: sender;
-
-
- @end