//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; public class SpreadsheetRowFilter { [DNAFieldAttribute(0, "SpreadsheetRowFilter", "*next", 152)] public SpreadsheetRowFilter ptr_next; [DNAFieldAttribute(1, "SpreadsheetRowFilter", "*prev", 152)] public SpreadsheetRowFilter ptr_prev; [DNAFieldAttribute(2, "char", "column_name[64]", 1)] public char[] column_name = new System.Char[64]; [DNAFieldAttribute(3, "uchar", "operation", 1)] public byte operation; [DNAFieldAttribute(4, "uchar", "flag", 1)] public byte flag; [DNAFieldAttribute(5, "char", "_pad0[2]", 1)] public char[] _pad0 = new System.Char[2]; [DNAFieldAttribute(6, "int", "value_int", 4)] public int value_int; [DNAFieldAttribute(7, "int", "value_int2[2]", 4)] public int[] value_int2 = new System.Int32[2]; [DNAFieldAttribute(8, "char", "*value_string", 1)] public char ptr_value_string; [DNAFieldAttribute(9, "float", "value_float", 4)] public float value_float; [DNAFieldAttribute(10, "float", "threshold", 4)] public float threshold; [DNAFieldAttribute(11, "float", "value_float2[2]", 4)] public float[] value_float2 = new System.Single[2]; [DNAFieldAttribute(12, "float", "value_float3[3]", 4)] public float[] value_float3 = new System.Single[3]; [DNAFieldAttribute(13, "float", "value_color[4]", 4)] public float[] value_color = new System.Single[4]; [DNAFieldAttribute(14, "char", "_pad1[4]", 1)] public char[] _pad1 = new System.Char[4]; public SpreadsheetRowFilter(SpreadsheetRowFilter ptr_next, SpreadsheetRowFilter ptr_prev, char[] column_name, byte operation, byte flag, char[] _pad0, int value_int, int[] value_int2, char ptr_value_string, float value_float, float threshold, float[] value_float2, float[] value_float3, float[] value_color, char[] _pad1) { this.ptr_next = ptr_next; this.ptr_prev = ptr_prev; this.column_name = column_name; this.operation = operation; this.flag = flag; this._pad0 = _pad0; this.value_int = value_int; this.value_int2 = value_int2; this.ptr_value_string = ptr_value_string; this.value_float = value_float; this.threshold = threshold; this.value_float2 = value_float2; this.value_float3 = value_float3; this.value_color = value_color; this._pad1 = _pad1; } } }