|
a/src/rcldb/searchdata.cpp |
|
b/src/rcldb/searchdata.cpp |
1 |
#ifndef lint
|
1 |
#ifndef lint
|
2 |
static char rcsid[] = "@(#$Id: searchdata.cpp,v 1.25 2008-09-29 11:33:55 dockes Exp $ (C) 2006 J.F.Dockes";
|
2 |
static char rcsid[] = "@(#$Id: searchdata.cpp,v 1.26 2008-10-14 07:50:13 dockes Exp $ (C) 2006 J.F.Dockes";
|
3 |
#endif
|
3 |
#endif
|
4 |
/*
|
4 |
/*
|
5 |
* This program is free software; you can redistribute it and/or modify
|
5 |
* This program is free software; you can redistribute it and/or modify
|
6 |
* it under the terms of the GNU General Public License as published by
|
6 |
* it under the terms of the GNU General Public License as published by
|
7 |
* the Free Software Foundation; either version 2 of the License, or
|
7 |
* the Free Software Foundation; either version 2 of the License, or
|
|
... |
|
... |
634 |
bool SearchDataClauseSub::toNativeQuery(Rcl::Db &db, void *p, const string&)
|
634 |
bool SearchDataClauseSub::toNativeQuery(Rcl::Db &db, void *p, const string&)
|
635 |
{
|
635 |
{
|
636 |
return m_sub->toNativeQuery(db, p);
|
636 |
return m_sub->toNativeQuery(db, p);
|
637 |
}
|
637 |
}
|
638 |
|
638 |
|
|
|
639 |
bool SearchDataClauseSub::getTerms(vector<string>& terms,
|
|
|
640 |
vector<vector<string> >& groups,
|
|
|
641 |
vector<int>& gslks) const
|
|
|
642 |
{
|
|
|
643 |
return m_sub.getconstptr()->getTerms(terms, groups, gslks);
|
|
|
644 |
}
|
|
|
645 |
|
639 |
} // Namespace Rcl
|
646 |
} // Namespace Rcl
|