* Determines whether the field type is Integer * * @return @b bool Returns true if field type is Integer, and false if it is * not. */
| 120 | * not. |
| 121 | */ |
| 122 | bool TableField::isInteger() const { |
| 123 | return (m_type == TableField::Integer); |
| 124 | } |
| 125 | |
| 126 | /** |
| 127 | * Determines whether the field type is Double |