git-svn-id: svn://db.shs.com.ru/libs@96 a8b55f48-bf90-11e4-a774-851b48703e85
26 lines
371 B
C++
26 lines
371 B
C++
#ifndef CDUTILS_H
|
|
#define CDUTILS_H
|
|
|
|
#include "piconnection.h"
|
|
#include "pidatatransfer.h"
|
|
|
|
|
|
#define KX_COUNT 16384
|
|
|
|
extern volatile double X[KX_COUNT];
|
|
extern volatile PIMap<int, double> K;
|
|
|
|
class CDUtils : public PIObject
|
|
{
|
|
PIOBJECT(CDUtils)
|
|
public:
|
|
CDUtils();
|
|
void test();
|
|
|
|
private:
|
|
PIConnection connection;
|
|
|
|
};
|
|
|
|
#endif // CDUTILS_H
|