tests now using libCom osi

This commit is contained in:
jrowlandls
2011-09-19 14:51:35 +01:00
parent e1dc920661
commit 6383b8933f
5 changed files with 68 additions and 66 deletions

View File

@@ -12,6 +12,15 @@
#include <string>
#include <stdlib.h>
#ifdef _WIN32
void setenv(char * a, char * b, int c)
{
char buf[1024];
sprintf(buf, "%s=%s", a, b);
_putenv(buf);
}
#endif
using namespace epics::pvAccess;
using namespace epics::pvData;
using namespace std;