blob: 56896020611b32dfb50c65442cc56fccff005ac5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef _rebuffer_h_
#define _rebuffer_h_
#include <stdint.h>
#include "nsStringGlue.h"
//////////////////////////////////////////////////////////////
// A rebuffering class necessary for stream output buffering
//////////////////////////////////////////////////////////////
class MimeRebuffer {
public:
MimeRebuffer (void);
virtual ~MimeRebuffer (void);
uint32_t GetSize();
uint32_t IncreaseBuffer(const nsACString &addBuf);
uint32_t ReduceBuffer(uint32_t numBytes);
nsACString & GetBuffer();
protected:
nsCString mBuf;
};
#endif /* _rebuffer_h_ */
|