/usr/include/collada-dom2.4/dae/daeStringTable.h is in libcollada-dom2.4-dp-dev 2.4.4+ds1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | /*
* Copyright 2006 Sony Computer Entertainment Inc.
*
* Licensed under the MIT Open Source License, for details please see license.txt or the website
* http://www.opensource.org/licenses/mit-license.php
*
*/
#ifndef __DAE_STRING_TABLE_H__
#define __DAE_STRING_TABLE_H__
#include <dae/daeTypes.h>
#include <dae/daeMemorySystem.h>
/**
* The @c daeStringTable is a simple string table class to hold a float list of strings
* without a lot of allocations.
*/
class daeStringTable
{
public: // allocate/construct/destruct/deallocate
/**
* Macro that defines new and delete overrides for this class
*/
DAE_ALLOC
/**
* Constructor which specifies fixed buffer size.
* @param stringBufferSize The size of the buffer to create for string allocation.
*/
DLLSPEC daeStringTable(int stringBufferSize = 1024*1024);
/**
* Destructor.
*/
~daeStringTable() { clear(); }
public: // INTERFACE
/**
* Allocates a string from the table.
* @param string <tt> const char * </tt> to copy into the table.
* @return Returns an allocated string.
*/
DLLSPEC daeString allocString(daeString string);
/**
* Clears the storage.
*/
DLLSPEC void clear();
private: // MEMBERS
size_t _stringBufferSize;
size_t _stringBufferIndex;
daeStringArray _stringBuffersList;
daeString allocateBuffer();
daeString _empty;
};
#endif //__DAE_STRING_TABLE_H__
|