blob: 7789c9d5d70e87cfa34b3d9eabd864ee1ea5bc04 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
#pragma once
#include "CrossfirePacket.h"
#include "Value.h"
class CrossfireEvent : public CrossfirePacket {
public:
CrossfireEvent();
virtual ~CrossfireEvent();
void clone(CrossfirePacket** _value);
Value* getBody();
int getType();
bool setBody(Value* value);
private:
Value* m_body;
};