コード例 #1
0
ファイル: CCTcpServerForm.cs プロジェクト: damonlin/Reporter
        public CCTcpServerForm()
        {
            InitializeComponent();

            // Create TCPIP Interface
            m_TCPInterface = new CCStandardInterface();
            m_TCPInterface.TextUI = rtfTerminal;            

            //m_TCPInterface.Parser = new CChromaParser();
            m_TCPInterface.Dispatcher = new CChromaDispatcher(m_TCPInterface);
        }
コード例 #2
0
ファイル: CCTcpServerForm.cs プロジェクト: damonlin/Monitor
        public CCTcpServerForm()
        {
            InitializeComponent();

            // Create TCPIP Interface
            m_TCPInterface        = new CCStandardInterface();
            m_TCPInterface.TextUI = rtfTerminal;

            //m_TCPInterface.Parser = new CChromaParser();
            m_TCPInterface.Dispatcher = new CChromaDispatcher(m_TCPInterface);
        }
コード例 #3
0
        public CCRs232Form()
        {
            InitializeComponent();

            // Restore the users settings
            InitializeControlValues();

            // Create RS232 Interface
            m_RS232Interface            = new CCStandardInterface();
            m_RS232Interface.Parser     = new CChromaParser();
            m_RS232Interface.Dispatcher = new CChromaDispatcher(m_RS232Interface);
        }
コード例 #4
0
ファイル: CCRs232Form.cs プロジェクト: damonlin/Reporter
        public CCRs232Form()
        {
            InitializeComponent();

            // Restore the users settings
            InitializeControlValues();

            // Create RS232 Interface
            m_RS232Interface = new CCStandardInterface();
            m_RS232Interface.Parser = new CChromaParser();
            m_RS232Interface.Dispatcher = new CChromaDispatcher(m_RS232Interface);
        }
コード例 #5
0
        public CCTcpClientForm()
        {
            InitializeComponent();

            // Create TCPIP Interface
            m_TCPInterface             = new CCStandardInterface();
            m_TCPInterface.TextUI      = rtfTerminal;
            m_TCPInterface.EnableRetry = false;

            // Setup Parser and Dispatcher if necessary
            //m_TCPInterface.Parser = new CChromaParser();
            //m_TCPInterface.Dispatcher = new CChromaDispatcher(m_RS232Interface);
        }
コード例 #6
0
ファイル: CCTcpClientForm.cs プロジェクト: damonlin/Reporter
        public CCTcpClientForm()
        {
            InitializeComponent();

            // Create TCPIP Interface
            m_TCPInterface = new CCStandardInterface();
            m_TCPInterface.TextUI = rtfTerminal;
            m_TCPInterface.EnableRetry = false;

            // Setup Parser and Dispatcher if necessary
            //m_TCPInterface.Parser = new CChromaParser();
            //m_TCPInterface.Dispatcher = new CChromaDispatcher(m_RS232Interface);
        }
コード例 #7
0
 public CChromaDispatcher(CCStandardInterface p_Interface)
     : base(p_Interface)
 {
 }
コード例 #8
0
ファイル: CCBaseDispatcher.cs プロジェクト: damonlin/Reporter
 public CCBaseDispatcher(CCStandardInterface p_Interface) 
 {
     m_Interface = p_Interface;
     initializeFuncDirectory();
 }
コード例 #9
0
ファイル: Chroma.cs プロジェクト: damonlin/Reporter
 public CChromaDispatcher(CCStandardInterface p_Interface)
     : base(p_Interface)
 {
 }
コード例 #10
0
ファイル: CCBaseDispatcher.cs プロジェクト: damonlin/Monitor
 public CCBaseDispatcher(CCStandardInterface p_Interface)
 {
     m_Interface = p_Interface;
     initializeFuncDirectory();
 }