#ifndef __TEST_OBJ_H #define __TEST_OBJ_H #include #include #include "hpcxx_byte.h" class TestObj { private: int i; int emptyObject ; // 1 if this is a null object public: TestObj(int n); TestObj(); int getI(); ~TestObj(); friend ostream& operator<< (ostream &, TestObj &); friend void hpcxx_pack(HPCxx_Buffer &buf, TestObj *t,int count); friend void hpcxx_unpack(HPCxx_Buffer &buf, TestObj *t,int count); }; #endif // __TEST_OBJ_H