1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
#include "OPC_Client.h"
#include <vector>
#include <string>
#include <iostream>
using namespace std;
using namespace System;
using namespace System::Collections;
using namespace System::Text;
using namespace OPCAutomation;
using namespace System::Runtime::InteropServices;
OPC_Client::OPC_Client()
{
}
OPC_Client::~OPC_Client()
{
}
bool OPC_Client::get_OPC_available_server()
{
OPCServer ^myDummyServer = gcnew OPCServer;
myDummyServer->GetOPCServer("");
} |