blob: 33086d8ea1e973e033cf7e95c36acb3231a7418f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
/*
* 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/Whiteboard/Operations/WhiteboardInsertOperation.h>
#include <utility>
namespace Swift {
class WhiteboardTransformer {
public:
static std::pair<WhiteboardInsertOperation::ref, WhiteboardInsertOperation::ref> transform(WhiteboardInsertOperation::ref clientOp, WhiteboardInsertOperation::ref serverOp);
};
}
|