using System.Collections.Generic;
namespace Google.ProtocolBuffers.Descriptors {
///
/// Contains lookup tables containing all the descriptors defined in a particular file.
///
internal class DescriptorPool {
IDictionary byName;
///
/// Finds a symbol of the given name within the pool.
///
/// The type of symbol to look for
/// Name to look up
/// The symbol with the given name and type,
/// or null if the symbol doesn't exist or has the wrong type
internal T FindSymbol(string name) where T : class {
return default(T);
}
}
}