home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Source / MiscMergeKit / _MiscMergeDelayedParseCommand.h < prev    next >
Encoding:
Text File  |  1995-07-08  |  960 b   |  29 lines

  1. //
  2. //    _MiscMergeDelayedParseCommand.h -- delayed merge command implementation
  3. //        Written by Don Yacktman Copyright (c) 1995 by Don Yacktman.
  4. //                Version 1.0.  All rights reserved.
  5. //        This notice may not be removed from this source code.
  6. //
  7. //    This object is included in the MiscKit by permission from the author
  8. //    and its use is governed by the MiscKit license, found in the file
  9. //    "LICENSE.rtf" in the MiscKit distribution.  Please refer to that file
  10. //    for a list of all applicable permissions and restrictions.
  11. //    
  12.  
  13.  
  14. #import <misckit/miscmerge.h>
  15.  
  16. // Note that this command will never be built from parsing the
  17. // word "DelayedParse" since the class name would have to have
  18. // a lowercase "p" to be accessed by the parser.  As such, it
  19. // will only be used in the special case that the parser finds
  20. // a command with the start/end delimiters in it.
  21.  
  22. @interface _MiscMergeDelayedParseCommand : MiscMergeCommand
  23. {
  24.     MiscString *unparsedCommand;
  25. }
  26.  
  27. @end
  28.  
  29.