XpressEngine Core  1.11.2
 All Classes Namespaces Files Functions Variables Pages
IndexHint.class.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) NAVER <http://www.navercorp.com> */
3 
9 class IndexHint
10 {
11 
17 
23 
31  {
32  $this->index_name = $index_name;
33  $this->index_hint_type = $index_hint_type;
34  }
35 
36  function getIndexName()
37  {
38  return $this->index_name;
39  }
40 
41  function getIndexHintType()
42  {
44  }
45 
46 }
47 /* End of file IndexHint.class.php */
48 /* Location: ./classes/db/queryparts/table/IndexHint.class.php */
__construct($index_name, $index_hint_type)