admin | 913ffb7 | 2006-09-27 00:36:28 +0000 | [diff] [blame] | 1 | <?php if (!defined('BASEPATH')) exit('No direct script access allowed'); |
| 2 | /** |
| 3 | * Code Igniter |
| 4 | * |
| 5 | * An open source application development framework for PHP 4.3.2 or newer |
| 6 | * |
| 7 | * @package CodeIgniter |
| 8 | * @author Rick Ellis |
| 9 | * @copyright Copyright (c) 2006, pMachine, Inc. |
| 10 | * @license http://www.codeignitor.com/user_guide/license.html |
| 11 | * @link http://www.codeigniter.com |
| 12 | * @since Version 1.0 |
| 13 | * @filesource |
| 14 | */ |
| 15 | |
| 16 | // ------------------------------------------------------------------------ |
| 17 | |
| 18 | /** |
| 19 | * DB Cachine Class |
| 20 | * |
| 21 | * @category Database |
| 22 | * @author Rick Ellis |
| 23 | * @link http://www.codeigniter.com/user_guide/database/ |
| 24 | */ |
| 25 | class CI_DB_cache { |
| 26 | |
| 27 | |
| 28 | |
| 29 | /** |
admin | 402d1d5 | 2006-09-27 01:54:14 +0000 | [diff] [blame] | 30 | * Cache it! |
admin | 913ffb7 | 2006-09-27 00:36:28 +0000 | [diff] [blame] | 31 | * |
| 32 | * @access public |
| 33 | * @return string |
| 34 | */ |
| 35 | function cache() |
| 36 | { |
| 37 | } |
| 38 | |
| 39 | // -------------------------------------------------------------------- |
| 40 | |
| 41 | |
| 42 | } |
| 43 | |
| 44 | ?> |