/*
 * Copyright (c) 2012 Mateusz Piękos
 * Licensed under the simplified BSD license.
 * See Documentation/Licenses/BSD-simplified.txt for more information.
 */

#pragma once

#include <Swiften/Elements/Whiteboard/WhiteboardOperation.h>

#include <Swiften/Elements/Whiteboard/WhiteboardElement.h>

namespace Swift {
	class WhiteboardInsertOperation : public WhiteboardOperation {
	public:
		typedef boost::shared_ptr<WhiteboardInsertOperation> ref;
	public:
		~WhiteboardInsertOperation() {
		}

		WhiteboardElement::ref getElement() const {
			return element_;
		}

		void setElement(WhiteboardElement::ref element) {
			element_ = element;
		}

	private:
		WhiteboardElement::ref element_;
	};
}