| | |
| | | | program/include/rcube_result_set.php | |
| | | | | |
| | | | This file is part of the RoundCube Webmail client | |
| | | | Copyright (C) 2006-2008, RoundCube Dev. - Switzerland | |
| | | | Copyright (C) 2006-2009, RoundCube Dev. - Switzerland | |
| | | | Licensed under the GNU GPL | |
| | | | | |
| | | | PURPOSE: | |
| | |
| | | | Author: Thomas Bruederli <roundcube@gmail.com> | |
| | | +-----------------------------------------------------------------------+ |
| | | |
| | | $Id: rcube_result_set.php 328 2006-08-30 17:41:21Z thomasb $ |
| | | $Id$ |
| | | |
| | | */ |
| | | |
| | |
| | | { |
| | | $this->count = (int)$c; |
| | | $this->first = (int)$f; |
| | | } |
| | | |
| | | function rcube_result_set($c=0, $f=0) |
| | | { |
| | | $this->__construct($c, $f); |
| | | } |
| | | |
| | | function add($rec) |