blob: 90c8bdc870c389d93b1339c9cc24af9dc6d011e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "commonObjects.h"
RowSetPtr
CommonObjects::getSource(const std::string & name) const
{
RowSets::const_iterator i = rowSets.find(name);
if (i != rowSets.end()) {
return i->second;
}
throw CommonObjects::DataSourceNotFound();
}
|