Exemple #1
0
        public static PropertyIntCompressionSettings Create()
        {
            PropertyIntCompressionSettings f;

            f       = new PropertyIntCompressionSettings();
            f._bits = 32;

            return(f);
        }
Exemple #2
0
        public static PropertyIntCompressionSettings Create(int bits, int shift)
        {
            PropertyIntCompressionSettings f;

            f        = new PropertyIntCompressionSettings();
            f._bits  = 32;
            f._shift = shift;

            return(f);
        }