Example #1
0
        public bool IsSupported(string ext)
        {
            CFileExtension fe = GetExt(ext);

            return((fe == null) ? false : true);
        }
Example #2
0
 public bool IsSupported(CFileExtension ext)
 {
     return(mFormatters.ContainsKey(ext));
 }