Files
src-1.2/engine/server/library/serverScript/src/shared/ScriptParamArchive.h
T
2014-01-15 08:16:35 -07:00

26 lines
674 B
C++

// ScriptParamArchive.h
// Copyright 2000-02, Sony Online Entertainment Inc., all rights reserved.
// Author: Justin Randall
#ifndef _INCLUDED_ScriptParamArchive_H
#define _INCLUDED_ScriptParamArchive_H
//-----------------------------------------------------------------------
struct Param;
//-----------------------------------------------------------------------
namespace Archive
{
class ReadIterator;
class ByteStream;
void get(Archive::ReadIterator & source, Param & target);
void put(Archive::ByteStream & target, const Param & source);
}
//-----------------------------------------------------------------------
#endif // _INCLUDED_ScriptParamArchive_H