prototype fixes (this time including pure virtual function detection)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52771 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -60,17 +60,17 @@ public:
|
||||
/**
|
||||
Returns the size of the buffer.
|
||||
*/
|
||||
size_t GetBufSize();
|
||||
size_t GetBufSize() const;
|
||||
|
||||
/**
|
||||
Return a pointer to the data in the buffer.
|
||||
*/
|
||||
void* GetData();
|
||||
void* GetData() const;
|
||||
|
||||
/**
|
||||
Returns the length of the valid data in the buffer.
|
||||
*/
|
||||
size_t GetDataLen();
|
||||
size_t GetDataLen() const;
|
||||
|
||||
/**
|
||||
Ensure the buffer is big enough and return a pointer to the
|
||||
|
Reference in New Issue
Block a user