You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
487 B
C#
24 lines
487 B
C#
2 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text;
|
||
|
//using Basic;
|
||
|
namespace Mesnac.Basic
|
||
|
{
|
||
|
public class OPCDriver
|
||
|
{
|
||
|
public string DriverName;
|
||
|
public string serverProgID; // ProgID of OPC server
|
||
|
public string serverip;
|
||
|
public OPCComm theSrv;
|
||
|
|
||
|
public OPCDriver()
|
||
|
{
|
||
|
serverProgID = "";
|
||
|
serverip = "";
|
||
|
DriverName = "";
|
||
|
theSrv = null;
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|