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

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

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

            public Output(string n, InoutType t)
            {
                guiName = n; type = t;
            }
Beispiel #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;
            }