Home
last modified time | relevance | path

Searched refs:PostGISIndex (Results 1 – 3 of 3) sorted by relevance

/dports/databases/spatialite_gui/spatialite_gui-1.7.1/
H A DObjects.cpp2041 PostGISIndex::~PostGISIndex() in ~PostGISIndex()
2055 void PostGISIndex::AddField(int seq, PostGISColumn * col) in AddField()
2080 PostGISIndex *pI; in ~PostGISHelper()
2081 PostGISIndex *pIn; in ~PostGISHelper()
2514 PostGISIndex *PostGISHelper::AddIndex(wxString & Name) in AddIndex()
2518 PostGISIndex *idx = new PostGISIndex(name); in AddIndex()
2527 PostGISIndex *PostGISHelper::AddIndex(wxString & name, bool unique) in AddIndex()
2530 PostGISIndex *idx = FirstIdx; in AddIndex()
2541 idx = new PostGISIndex(name, unique); in AddIndex()
2563 void PostGISHelper::ExpandIndexFields(MyFrame * MainFrame, PostGISIndex * index, in ExpandIndexFields()
[all …]
H A DClassdef.h6333 class PostGISIndex
6343 PostGISIndex *Next;
6345 PostGISIndex(wxString & name) in PostGISIndex() function
6354 PostGISIndex(wxString & name, bool unique) in PostGISIndex() function
6363 ~PostGISIndex();
6381 void SetNext(PostGISIndex * next) in SetNext()
6385 PostGISIndex *GetNext() in GetNext()
6400 PostGISIndex *FirstIdx;
6401 PostGISIndex *LastIdx;
6412 PostGISIndex *AddIndex(wxString & name);
[all …]
H A DTableTree.cpp4146 PostGISIndex *idx = postgis.GetFirstIndex(); in OnCmdDumpPostGIS()