MCPcopy Create free account
hub / github.com/GeoDaCenter/geoda / FindTableBase

Method FindTableBase

Project.cpp:991–1002  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

989}
990
991TableBase* Project::FindTableBase()
992{
993 if (frames_manager == NULL) return NULL;
994 std::list<FramesManagerObserver*> observers(frames_manager->getCopyObservers());
995 std::list<FramesManagerObserver*>::iterator it;
996 for (it=observers.begin(); it != observers.end(); ++it) {
997 if (TableFrame* w = dynamic_cast<TableFrame*>(*it)) {
998 return w->GetTableBase();
999 }
1000 }
1001 return NULL;
1002}
1003
1004void Project::GetSelectedRows(std::vector<int>& rowids)
1005{

Callers 8

OnMoveSelectedToTopMethod · 0.80
OnInvertSelectionMethod · 0.80
OnClearSelectionMethod · 0.80
OnMergeTableDataMethod · 0.80
OnAggregateDataMethod · 0.80
OnSpatialJoinMethod · 0.80
OnDissolveMethod · 0.80
OnGroupingMapMethod · 0.80

Calls 2

getCopyObserversMethod · 0.80
GetTableBaseMethod · 0.80

Tested by

no test coverage detected