mirror of
https://github.com/nasa/trick.git
synced 2025-01-15 01:09:59 +00:00
36 lines
944 B
C++
36 lines
944 B
C++
/*************************************************************************
|
|
PURPOSE: (Represent Websocket variable server variable.)
|
|
LIBRARY DEPENDENCIES:
|
|
( (../src/VariableServerVariable.o))
|
|
**************************************************************************/
|
|
#ifndef VARIABLE_SERVER_VARIABLE_HH
|
|
#define VARIABLE_SERVER_VARIABLE_HH
|
|
|
|
#include <time.h>
|
|
#include <vector>
|
|
#include "mongoose/mongoose.h"
|
|
#include <iostream>
|
|
#include <trick/reference.h>
|
|
|
|
#define MAX_ARRAY_LENGTH 4096
|
|
|
|
class VariableServerVariable {
|
|
|
|
public:
|
|
VariableServerVariable( REF2* variableType);
|
|
~VariableServerVariable();
|
|
const char* getName();
|
|
const char* getUnits();
|
|
void stageValue();
|
|
void writeValue( std::ostream& chkpnt_os );
|
|
|
|
private:
|
|
VariableServerVariable() {}
|
|
REF2 *varInfo;
|
|
void *address;
|
|
int size;
|
|
void *stageBuffer;
|
|
bool deref;
|
|
};
|
|
#endif
|