using System; using System.Text; using System.Collections; using System.Collections.Specialized; namespace P4API { /// /// Subclass of Hashtable which provides additional methods for dealing with the psuedo-arrays passed from Perforce. /// public class P4Record : P4RecordBase { internal P4Record(Hashtable sd) : base(sd) { } } }