gecko-dev/xpcom/ds/nsByteBuffer.h

38 строки
1.0 KiB
C++

/* -*- Mode: C++; tab-width: 2; 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 nsByteBuffer_h__
#define nsByteBuffer_h__
#include "mozilla/Attributes.h"
#include "nsIByteBuffer.h"
class ByteBufferImpl MOZ_FINAL : public nsIByteBuffer {
public:
ByteBufferImpl(void);
NS_DECL_ISUPPORTS
static nsresult
Create(nsISupports *aOuter, REFNSIID aIID, void **aResult);
NS_IMETHOD Init(uint32_t aBufferSize);
NS_IMETHOD_(uint32_t) GetLength(void) const;
NS_IMETHOD_(uint32_t) GetBufferSize(void) const;
NS_IMETHOD_(char*) GetBuffer() const;
NS_IMETHOD_(bool) Grow(uint32_t aNewSize);
NS_IMETHOD_(int32_t) Fill(nsresult* aErrorCode, nsIInputStream* aStream,
uint32_t aKeep);
char* mBuffer;
uint32_t mSpace;
uint32_t mLength;
private:
~ByteBufferImpl();
};
#endif // nsByteBuffer_h__