home *** CD-ROM | disk | FTP | other *** search
- //----------------------------------------------------------------------------------------------------
- //
- // TextSubInspector
- //
- // Inherits From: DefaultSubInspector
- //
- // Declared In: TextSubInspector.h
- //
- // Class Description
- //
- // TextSubInspector manages subinspection of text files such as
- // 'rtf', 'rtfd', 'h', 'm', 'c', 'strings', 'classes', etc.
- //
- // 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 "DefaultSubInspector.h"
-
-
- @interface TextSubInspector : DefaultSubInspector
- {
- id text;
- }
-
- //----------------------------------------------------------------------------------------------------
- // Read Methods
- //----------------------------------------------------------------------------------------------------
- - readRTF: (STR)path;
- - readRTFD: (STR)path;
- - readText: (STR)path;
-
- @end