Esempio n. 1
0
 public Output(string n, InoutType t)
 {
     type = t;
 }                                                                       //legacy constructor
Esempio n. 2
0
            }                                       //default constructor to create with activator

            public Output(InoutType t)
            {
                type = t;
            }
Esempio n. 3
0
 public Input(string n, InoutType t, bool write = false, bool mandatory = false)
 {
     type = t;
 }                                                                                                              //lagacy constructor
Esempio n. 4
0
            }                                      //default constructor to create with activator

            public Input(InoutType t)
            {
                type = t;
            }
Esempio n. 5
0
            }                                       //default constructor to create with activator

            public Output(string n, InoutType t)
            {
                guiName = n; type = t;
            }
Esempio n. 6
0
            }                                      //default constructor to create with activator

            public Input(string n, InoutType t, bool write = false, bool mandatory = false)
            {
                guiName = n; type = t; this.write = write; this.mandatory = mandatory;
            }