X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fbuffer.h;h=8e9bf6c0d9ea47f7e2a698b76bdc4aae084a44b0;hp=2c361d3db161527d8bd5a1a9e03d2e984aa8af10;hb=f53a40aa9d3e0f2c1f15191b665780595d52348a;hpb=73edffb5f0f6ecae4118c36a7ca2c0d479b7f8c6 diff --git a/src/client/buffer.h b/src/client/buffer.h index 2c361d3d..8e9bf6c0 100644 --- a/src/client/buffer.h +++ b/src/client/buffer.h @@ -21,18 +21,14 @@ #ifndef _BUFFER_H_ #define _BUFFER_H_ -#include - #include "global.h" -#include "message.h" -#include "quasselui.h" +class AbstractUiMsg; +class Message; struct BufferState; //!\brief Encapsulates the contents of a single channel, query or server status context. -/** A Buffer maintains a list of existing nicks and their status. New messages can be appended using - * displayMsg(). A buffer displays its contents by way of a BufferWidget, which can be shown - * (and created on demand) by calling showWidget(). +/** A Buffer maintains a list of existing nicks and their status. */ class Buffer : public QObject { Q_OBJECT @@ -106,6 +102,6 @@ class Buffer : public QObject { QList layoutedMsgs; }; -Q_DECLARE_OPERATORS_FOR_FLAGS(Buffer::ActivityLevel) +Q_DECLARE_OPERATORS_FOR_FLAGS(Buffer::ActivityLevel) #endif