summaryrefslogtreecommitdiffstats
path: root/src/sortdict.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/sortdict.h')
-rw-r--r--src/sortdict.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/sortdict.h b/src/sortdict.h
index 366e1ac..c2afa39 100644
--- a/src/sortdict.h
+++ b/src/sortdict.h
@@ -207,6 +207,18 @@ class SDict
#endif
}
+ void insertAt(int i,const char *key,const T *d)
+ {
+ m_list->insert(i,d);
+ m_dict->insert(key,d);
+#if AUTORESIZE
+ if (m_dict->size()>SDict_primes[m_sizeIndex])
+ {
+ m_dict->resize(SDict_primes[++m_sizeIndex]);
+ }
+#endif
+ }
+
/*! Indicates whether or not the dictionary owns its elements */
void setAutoDelete(bool val)
{
@@ -230,6 +242,12 @@ class SDict
{
return m_dict->find(key);
}
+ int findAt(const QCString &key)
+ {
+ T *item = find(key);
+ if (item==0) return -1;
+ return m_list->find(item);
+ }
/*! Equavalent to find(). */
T *operator[](const char *key) const