diff options
-rw-r--r-- | Frameworks/QueryKit/QKQueryOperators.h | 10 | ||||
-rw-r--r-- | Frameworks/QueryKit/QKQueryTypes.h | 7 |
2 files changed, 13 insertions, 4 deletions
diff --git a/Frameworks/QueryKit/QKQueryOperators.h b/Frameworks/QueryKit/QKQueryOperators.h index 5d9852b3..247496fd 100644 --- a/Frameworks/QueryKit/QKQueryOperators.h +++ b/Frameworks/QueryKit/QKQueryOperators.h @@ -31,8 +31,12 @@ // More info at <http://code.google.com/p/sequel-pro/> /** - * Note that this is by no means complete list of available operators, only the most commonly used ones. Other - * operators can be added as and when they are required. + * @enum QKQueryOperator + * + * Used to specify the operator to use for a specific query parameter. + * + * Note that this is by no means a complete list of available operators, only the most commonly used ones. + * Other operators can be added as and when they are required. */ typedef enum { @@ -49,4 +53,4 @@ typedef enum QKGreaterThanOrEqualOperator, QKLessThanOrEqualOperator } -QKQueryOperator;
\ No newline at end of file +QKQueryOperator; diff --git a/Frameworks/QueryKit/QKQueryTypes.h b/Frameworks/QueryKit/QKQueryTypes.h index 7bb51e3a..1e9e7403 100644 --- a/Frameworks/QueryKit/QKQueryTypes.h +++ b/Frameworks/QueryKit/QKQueryTypes.h @@ -30,6 +30,11 @@ // // More info at <http://code.google.com/p/sequel-pro/> +/** + * @enum QKQueryType + * + * Used to specify the type of query to be constructed. + */ typedef enum { QKSelectQuery, @@ -37,4 +42,4 @@ typedef enum QKInsertQuery, QKDeleteQuery, } -QKQueryType;
\ No newline at end of file +QKQueryType; |