Relativity.DataTransfer.Nodes.PathConversion.CanonicalFormConverterBase
namespace Relativity.DataTransfer.Nodes.PathConversion
{
public abstract class CanonicalFormConverterBase : ICanonicalFormConverter
{
public string Convert(string rawPath);
protected abstract string RemoveAdditionalSlashes(string path);
protected abstract string FixSlashes(string path);
protected CanonicalFormConverterBase();
}
}