2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
1999-05-19 01:43:13 +04:00
|
|
|
|
|
|
|
#ifndef nsUnicharBuffer_h__
|
|
|
|
#define nsUnicharBuffer_h__
|
|
|
|
|
|
|
|
#include "nsIUnicharBuffer.h"
|
2012-06-06 03:51:58 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
|
2012-06-06 03:51:58 +04:00
|
|
|
class UnicharBufferImpl MOZ_FINAL : public nsIUnicharBuffer {
|
1999-05-19 01:43:13 +04:00
|
|
|
public:
|
|
|
|
UnicharBufferImpl();
|
|
|
|
|
|
|
|
static NS_METHOD
|
|
|
|
Create(nsISupports *aOuter, REFNSIID aIID, void **aResult);
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD Init(uint32_t aBufferSize);
|
|
|
|
NS_IMETHOD_(int32_t) GetLength() const;
|
|
|
|
NS_IMETHOD_(int32_t) GetBufferSize() const;
|
1999-05-19 01:43:13 +04:00
|
|
|
NS_IMETHOD_(PRUnichar*) GetBuffer() const;
|
2012-08-22 19:56:38 +04:00
|
|
|
NS_IMETHOD_(bool) Grow(int32_t aNewSize);
|
1999-05-19 01:43:13 +04:00
|
|
|
|
|
|
|
PRUnichar* mBuffer;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mSpace;
|
|
|
|
uint32_t mLength;
|
2004-01-15 09:14:18 +03:00
|
|
|
|
|
|
|
private:
|
|
|
|
~UnicharBufferImpl();
|
1999-05-19 01:43:13 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsUnicharBuffer_h__
|