#pragma once #include #include class QIODevice; namespace Commands { enum CommandIds { UnknownCommand = 0, HandshakeCommand, RevisionUpdateCommand, CustomCommand = 0xffff }; void AKONADI2COMMON_EXPORT write(QIODevice *device, int commandId, flatbuffers::FlatBufferBuilder &fbb); }