mirror of
https://bitbucket.org/theswgsource/src-1.2.git
synced 2026-07-15 00:08:07 -04:00
26 lines
674 B
C++
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
|