CURVE_OBJ_INTERFACE.cs 952 Bytes
Newer Older
潘栩锋's avatar
潘栩锋 committed
1 2 3 4 5 6 7 8 9 10 11
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using FObjBase;
using FLY.Thick.Base.Common;

namespace FLY.Thick.Base.OBJ_INTERFACE
{
    public class CURVE_OBJ_INTERFACE
    {
潘栩锋's avatar
潘栩锋 committed
12 13

    
潘栩锋's avatar
潘栩锋 committed
14
        #region Pack
潘栩锋's avatar
潘栩锋 committed
15
        public class Pack_CurveList
潘栩锋's avatar
潘栩锋 committed
16
        {
潘栩锋's avatar
潘栩锋 committed
17 18 19
            public CurveCorrectWay correctway;
            public CurveType flag;
            public List<CurveCell> list;
潘栩锋's avatar
潘栩锋 committed
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
        }
       
        #endregion

        #region GetValue
        /// <summary>
        /// Pack_CurveList
        /// </summary>
        public const UInt16 GET_CURVELIST = 0;
        #endregion
        #region SetValue
        /// <summary>
        /// Pack_CurveList
        /// </summary>
        public const UInt16 SET_CURVELIST = 0; 
        #endregion
        #region PushMsg
        /// <summary>
        /// Pack_CurveList
        /// </summary>
        public const UInt16 PUSH_CURVELIST = 0; 
        #endregion
    }
}