summaryrefslogtreecommitdiffstats
path: root/comm/mailnews/mime/emitters/nsMimeRebuffer.h
blob: 8f22c3596143c3ecef4e51b9299b523fa050f1e3 (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 "nsString.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_ */