using System; namespace InstallSources { /// /// Represents a class that knows how to change paths to ensure that the correct source path is used. /// public interface IPathMangler { /// /// Returns the real source path for the given path found in an mdb. /// /// The source path related to the mdb path. /// The path found in the mdb file. string GetSourcePath (string path); /// /// Returns the target were a source path should be installed. /// /// The target path for the installation. /// The source path to install./ string GetTargetPath (string path); } }