1c311431ad
The ActionScript code is now under aslib and is built via Maven (and Ant). The CPP code is under cpplib and is ignored by everything (other than service generation), but now at least it's not crufting up the Java submodule with its XCode project. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6783 542714f4-19e9-0310-aa3c-eee0fc999fb1
24 lines
573 B
C++
24 lines
573 B
C++
#pragma once
|
|
|
|
#include "presents/Streamable.h"
|
|
#include "presents/ObjectInputStream.h"
|
|
#include "presents/ObjectOutputStream.h"
|
|
#include "presents/streamers/StreamableStreamer.h"
|
|
|
|
#include "presents/dobj/DEvent.h"
|
|
|
|
namespace presents { namespace dobj {
|
|
|
|
class InvocationNotificationEvent : public presents::dobj::DEvent {
|
|
public:
|
|
DECLARE_STREAMABLE();
|
|
|
|
int16 receiverId;
|
|
int8 methodId;
|
|
Shared< std::vector< Shared<Streamable> > > args;
|
|
|
|
virtual void readObject(ObjectInputStream& in);
|
|
virtual void writeObject(ObjectOutputStream& out) const;
|
|
};
|
|
|
|
}} |