trick/test/SIM_test_varserv/models/varserv/include/VS.hh

61 lines
1.2 KiB
C++
Raw Normal View History

2015-02-26 15:02:31 +00:00
/********************************* TRICK HEADER *******************************
PURPOSE: ( Variable server test )
2015-02-26 15:02:31 +00:00
REFERENCES: ( None )
ASSUMPTIONS AND LIMITATIONS: ( None )
PROGRAMMERS: ( (Lindsay Landry) (L3) (9-12-2013) ) ( (Jackie Deans) (CACI) (11-30-2022) )
2015-02-26 15:02:31 +00:00
********************************************************************************/
#include <wchar.h>
#include <string.h>
#include <string>
2015-02-26 15:02:31 +00:00
#include "trick_utils/comm/include/tc.h"
#include "trick_utils/comm/include/tc_proto.h"
#ifndef VS_HH
#define VS_HH
class VSTest {
2015-02-26 15:02:31 +00:00
public:
char a;
unsigned char b;
short c;
unsigned short d;
int e; /* m xy-position */
2015-02-26 15:02:31 +00:00
unsigned int f;
long g;
unsigned long h;
float i;
double j;
long long k;
unsigned long long l;
bool m;
int n[5];
std::string o;
char * p;
wchar_t * q; /**< trick_chkpnt_io(**) */
int large_arr[4000];
int status;
2015-02-26 15:02:31 +00:00
VSTest();
~VSTest();
int init();
int default_vars();
2015-02-26 15:02:31 +00:00
int shutdown();
int success();
int fail();
const char *status_messages[3] = {
"Variable Server Test Success",
"Variable Server Test Failure",
"Client failed to connect"
};
2015-02-26 15:02:31 +00:00
};
#endif