return(AddressStatsQuery4Ptr());
}
+bool
+AddressStatsQuery4::getNextRow(AddressStatsRow4& /*row*/) {
+ return (false);
+}
+
void
LeaseMgr::recountAddressStats6() {
using namespace stats;
return(AddressStatsQuery6Ptr());
}
+bool
+AddressStatsQuery6::getNextRow(AddressStatsRow6& /*row*/) {
+ return (false);
+}
std::string
LeaseMgr::getDBVersion() {
///
/// @return True if a row was fetched, false if there are no
/// more rows.
- virtual bool getNextRow(AddressStatsRow4& row) { return(false); };
+ virtual bool getNextRow(AddressStatsRow4& row);
};
/// @brief Defines a pointer to an AddressStatsQuery4.
///
/// @return True if a row was fetched, false if there are no
/// more rows.
- virtual bool getNextRow(AddressStatsRow6& row) { return (false); };
+ virtual bool getNextRow(AddressStatsRow6& row);
};
/// @brief Defines a pointer to an AddressStatsQuery6.