Exemplo n.º 1
0
        void CreateCtrlStage1(CObjectInfo objInfo)
        {
            CCtrlStage1RefComp refComp = new CCtrlStage1RefComp();
            CCtrlStage1Data    data    = new CCtrlStage1Data();

            m_ctrlStage1 = new MCtrlStage1(objInfo, refComp, data);
        }
Exemplo n.º 2
0
 public int SetData(CCtrlStage1Data source)
 {
     m_Data = ObjectExtensions.Copy(source);
     return(SUCCESS);
 }
Exemplo n.º 3
0
        public int GetData(out CCtrlStage1Data target)
        {
            target = ObjectExtensions.Copy(m_Data);

            return(SUCCESS);
        }
Exemplo n.º 4
0
 public MCtrlStage1(CObjectInfo objInfo, CCtrlStage1RefComp refComp, CCtrlStage1Data data)
     : base(objInfo)
 {
     m_RefComp = refComp;
     SetData(data);
 }