public static void BootUpFunctionEffect(ContainerEffect container)
                {
                    switch (container.TypePack)
                    {
                    case KindTypePack.STANDARD_UNCOMPRESSED:
                        container.Function = null;                                      /* Not Support */
                        break;

                    case KindTypePack.STANDARD_CPE:
                        container.Function = StandardCPE.FunctionEffect;
                        break;

                    case KindTypePack.CPE_FLYWEIGHT:
                        container.Function = null;                                      /* Not Support */
                        break;

                    case KindTypePack.CPE_INTERPOLATE:
                        container.Function = null;                                      /* Not Support */
                        break;

                    default:
                        break;
                    }
                }
Exemple #2
0
 /// <summary>
 /// copy constructor
 /// </summary>
 /// <param name="source"> source </param>
 public ContainerEffect(ContainerEffect source) : base(source)
 {
     m_containerType = source.m_containerType;
 }