| 
							- /*
 -   ==============================================================================
 - 
 -    This file is part of the JUCE library - "Jules' Utility Class Extensions"
 -    Copyright 2004-11 by Raw Material Software Ltd.
 - 
 -   ------------------------------------------------------------------------------
 - 
 -    JUCE can be redistributed and/or modified under the terms of the GNU General
 -    Public License (Version 2), as published by the Free Software Foundation.
 -    A copy of the license is included in the JUCE distribution, or can be found
 -    online at www.gnu.org/licenses.
 - 
 -    JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
 -    WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 -    A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 - 
 -   ------------------------------------------------------------------------------
 - 
 -    To release a closed-source product which uses JUCE, commercial licenses are
 -    available: visit www.rawmaterialsoftware.com/juce for more information.
 - 
 -   ==============================================================================
 - */
 - 
 - #ifndef __JUCE_TEXTDIFF_JUCEHEADER__
 - #define __JUCE_TEXTDIFF_JUCEHEADER__
 - 
 - 
 - /**
 -     Calculates and applies a sequence of changes to convert one text string into
 -     another.
 - 
 -     Once created, the TextDiff object contains an array of change objects, where
 -     each change can be either an insertion or a deletion. When applied in order
 -     to the original string, these changes will convert it to the target string.
 - */
 - class JUCE_API TextDiff
 - {
 - public:
 -     /** Creates a set of diffs for converting the original string into the target. */
 -     TextDiff (const String& original,
 -               const String& target);
 - 
 -     /** Applies this sequence of changes to the original string, producing the
 -         target string that was specified when generating them.
 - 
 -         Obviously it only makes sense to call this function with the string that
 -         was originally passed to the constructor. Any other input will produce an
 -         undefined result.
 -     */
 -     String appliedTo (String text) const;
 - 
 -     /** Describes a change, which can be either an insertion or deletion. */
 -     struct Change
 -     {
 -         String insertedText; /**< If this change is a deletion, this string will be empty; otherwise,
 -                                   it'll be the text that should be inserted at the index specified by start. */
 -         int start;    /**< Specifies the character index in a string at which text should be inserted or deleted. */
 -         int length;   /**< If this change is a deletion, this specifies the number of characters to delete. For an
 -                            insertion, this is the length of the new text being inserted. */
 - 
 -         /** Returns true if this change is a deletion, or false for an insertion. */
 -         bool isDeletion() const noexcept;
 - 
 -         /** Returns the result of applying this change to a string. */
 -         String appliedTo (const String& original) const noexcept;
 -     };
 - 
 -     /** The list of changes required to perform the transformation.
 -         Applying each of these, in order, to the original string will produce the target.
 -     */
 -     Array<Change> changes;
 - };
 - 
 - 
 - #endif   // __JUCE_TEXTDIFF_JUCEHEADER__
 
 
  |