Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
xdr_test.h
Go to the documentation of this file.
1 #include <vector>
2 #include <string>
3 
4 using std::vector;
5 using std::string;
6 
7 struct test{
8  int i;
9  unsigned int ui;
10  float f;
11  double d;
12  long long int li;
13  unsigned long long int uli;
14  string s;
15 
16  vector<int> vi;
17 
18  bool operator=(const test &t2);
19 };
20 
21 struct test get_obj();
int i
Definition: xdr_test.h:8
double d
Definition: xdr_test.h:11
bool operator=(const test &t2)
Definition: xdr_test.cpp:3
char string[256]
long long int li
Definition: xdr_test.h:12
unsigned long long int uli
Definition: xdr_test.h:13
unsigned int ui
Definition: xdr_test.h:9
struct test get_obj(void)
Definition: xdr_test.cpp:21
vector< int > vi
Definition: xdr_test.h:16
Definition: xdr_test.h:7
string s
Definition: xdr_test.h:14
float f
Definition: xdr_test.h:10