/**
* RCS DeltaText _text_ container.
*/
class DeltaText
{
private boolean annotate;
/**
* Create a new DeltaTextText set wich may later be applied to some revision.
* @param root Added lines will be annotated to root revision.
* @param prev Deleted lines will be annotated to prev revision.
*/
{
}
/**
* Adds a delta to this revision.
* @param delta the Delta to add.
*/
{
}
{
if (!annotate)
{
while (!deltaStack.empty())
}
else
{
while (!deltaStack.empty())
}
}
}