Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#ifndef TDTInterface_h
#define TDTInterface_h
#include <stdio.h>
#include <stdlib.h>
#include "rpcoxlib.h"
class TDTInterface
{
public:
static const int TDT_STATUS_NULL = 0x00;
static const int TDT_STATUS_CONNECTED = 0x01;
static const int TDT_STATUS_CIRCUIT_LOADED = 0x02;
static const int TDT_STATUS_CIRCUIT_RUNNING = 0x04;
/* funciton prototypes */
int initializeInterface();
void loadRCXCircuit(QString fileName);
void destroyInterface();
RPCOXLib::RPcoX rp;
HRESULT hr;
long int tdt_status;
};
#endif /* define (TDTInterface_h) */