Exemple #1
0
 public IAnalyser BuildAnalyser(Stream stream, EmoticonPackType type)
 {
     switch (type)
     {
         case EmoticonPackType.CFC:
             return new CFCAnalyser(stream);
         case EmoticonPackType.EIP:
             return new EIPAnalyser(stream);
     }
     return null;
 }
Exemple #2
0
        public IAnalyser BuildAnalyser(Stream stream, EmoticonPackType type)
        {
            switch (type)
            {
            case EmoticonPackType.CFC:
                return(new CFCAnalyser(stream));

            case EmoticonPackType.EIP:
                return(new EIPAnalyser(stream));
            }
            return(null);
        }
Exemple #3
0
        public object BuildEmoticonPackcer( EmoticonPackType packType)
        {
            switch (packType)
            {
                case EmoticonPackType.CFC:
                    return null;
                case EmoticonPackType.EIP:
                    return null;
            }

            return null;
        }
Exemple #4
0
        public object BuildEmoticonPackcer(EmoticonPackType packType)
        {
            switch (packType)
            {
            case EmoticonPackType.CFC:
                return(null);

            case EmoticonPackType.EIP:
                return(null);
            }

            return(null);
        }