/usr/include/fox-1.6/FXStringDict.h is in libfox-1.6-dev 1.6.49-2ubuntu1.
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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | /********************************************************************************
* *
* S t r i n g D i c t i o n a r y C l a s s *
* *
*********************************************************************************
* Copyright (C) 1998,2006 by Jeroen van der Zijp. All Rights Reserved. *
*********************************************************************************
* This library is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public *
* License as published by the Free Software Foundation; either *
* version 2.1 of the License, or (at your option) any later version. *
* *
* This library is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this library; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *
*********************************************************************************
* $Id: FXStringDict.h,v 1.16 2006/01/22 17:58:10 fox Exp $ *
********************************************************************************/
#ifndef FXSTRINGDICT_H
#define FXSTRINGDICT_H
#ifndef FXDICT_H
#include "FXDict.h"
#endif
namespace FX {
/**
* String dictionary maps a character string to a character string.
* The inserted strings are copied when they're inserted.
*/
class FXAPI FXStringDict : public FXDict {
FXDECLARE(FXStringDict)
protected:
virtual void *createData(const void*);
virtual void deleteData(void*);
public:
/// Construct a string dictionary
FXStringDict();
/// Copy constructor
FXStringDict(const FXStringDict& orig);
/// Assignment operator
FXStringDict &operator=(const FXStringDict& orig);
/// Insert a new string indexed by key, with given mark flag
const FXchar* insert(const FXchar* ky,const FXchar* str,bool mrk=false){ return (const FXchar*)FXDict::insert(ky,str,mrk); }
/// Replace or insert a new string indexed by key, unless given mark is lower that the existing mark
const FXchar* replace(const FXchar* ky,const FXchar* str,bool mrk=false){ return (const FXchar*)FXDict::replace(ky,str,mrk); }
/// Remove entry indexed by key
const FXchar* remove(const FXchar* ky){ return (const FXchar*)FXDict::remove(ky); }
/// Return the entry indexed by key, or return NULL if the key does not exist
const FXchar* find(const FXchar* ky) const { return (const FXchar*)FXDict::find(ky); }
/// Return the string at position pos
const FXchar* data(FXuint pos) const { return (const FXchar*)dict[pos].data; }
/// Destructor
virtual ~FXStringDict();
};
}
#endif
|