102 lines
2.8 KiB
C++
102 lines
2.8 KiB
C++
/*
|
|
* CDE - Common Desktop Environment
|
|
*
|
|
* Copyright (c) 1993-2012, The Open Group. All rights reserved.
|
|
*
|
|
* These libraries and programs are free software; you can
|
|
* redistribute them and/or modify them under the terms of the GNU
|
|
* Lesser General Public License as published by the Free Software
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* These libraries and programs are distributed in the hope that
|
|
* they will be useful, but WITHOUT ANY WARRANTY; without even the
|
|
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU Lesser General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with these librararies and programs; if not, write
|
|
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
* Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
/*%% (c) Copyright 1993, 1994 Hewlett-Packard Company */
|
|
/*%% (c) Copyright 1993, 1994 International Business Machines Corp. */
|
|
/*%% (c) Copyright 1993, 1994 Sun Microsystems, Inc. */
|
|
/*%% (c) Copyright 1993, 1994 Novell, Inc. */
|
|
/*%% $XConsortium: tt_db_message_info.h /main/3 1995/10/20 16:41:14 rswiston $ */
|
|
/* @(#)tt_db_message_info.h 1.8 93/09/07
|
|
* tt_db_message_info.h - Used to create a database record that stores
|
|
* queued message info in a way that is reasonable
|
|
* for the new DB server and compatible with the
|
|
* old DB server.
|
|
*
|
|
* Copyright (c) 1992 by Sun Microsystems, Inc.
|
|
*
|
|
*/
|
|
|
|
#ifndef _TT_DB_MESSAGE_INFO_H
|
|
#define _TT_DB_MESSAGE_INFO_H
|
|
|
|
#include "util/tt_object.h"
|
|
#include "util/tt_string.h"
|
|
#include "util/tt_xdr_version.h"
|
|
|
|
class _Tt_db_message_info : public _Tt_object {
|
|
public:
|
|
_Tt_db_message_info () {}
|
|
~_Tt_db_message_info () {}
|
|
|
|
int messageID;
|
|
int numParts;
|
|
int messageSize;
|
|
_Tt_string_list_ptr ptypes;
|
|
|
|
bool_t xdr (XDR *xdrs)
|
|
{
|
|
int dummy_int = 0;
|
|
_Tt_string dummy_string = "";
|
|
bool_t results;
|
|
_Tt_xdr_version xvers(1);
|
|
|
|
results = xdr_int(xdrs, &dummy_int);
|
|
|
|
if (results) {
|
|
results = xdr_int(xdrs, &messageID);
|
|
}
|
|
|
|
if (results) {
|
|
results = xdr_int(xdrs, &numParts);
|
|
}
|
|
|
|
if (results) {
|
|
results = xdr_int(xdrs, &messageSize);
|
|
}
|
|
|
|
if (results) {
|
|
int count = (ptypes.is_null() ? 0 : ptypes->count());
|
|
results = xdr_int(xdrs, &count);
|
|
|
|
for (int i=0; results && (i < count); i++) {
|
|
results = xdr_int(xdrs, &dummy_int);
|
|
}
|
|
}
|
|
|
|
if (results) {
|
|
results = ptypes.xdr(xdrs);
|
|
}
|
|
|
|
if (results) {
|
|
results = xdr_int(xdrs, &dummy_int);
|
|
}
|
|
|
|
if (results) {
|
|
results = dummy_string.xdr(xdrs);
|
|
}
|
|
|
|
return results;
|
|
}
|
|
};
|
|
|
|
#endif /* _TT_DB_MESSAGE_INFO_H */
|