diff options
author | stuconnolly <stuart02@gmail.com> | 2012-07-15 10:15:11 +0000 |
---|---|---|
committer | stuconnolly <stuart02@gmail.com> | 2012-07-15 10:15:11 +0000 |
commit | cb00d18102f8c3f88e8a15bb4d9fb7825cf29a59 (patch) | |
tree | 8c266026ae92013dbc028a09d7d98e22bbcfbd5f /Frameworks/QueryKit/Source/QKQueryGenericParameter.h | |
parent | dd2c7e34d265c7a4a66b7583a186456095b545ee (diff) | |
download | sequelpro-cb00d18102f8c3f88e8a15bb4d9fb7825cf29a59.tar.gz sequelpro-cb00d18102f8c3f88e8a15bb4d9fb7825cf29a59.tar.bz2 sequelpro-cb00d18102f8c3f88e8a15bb4d9fb7825cf29a59.zip |
Add a new order by class.
Diffstat (limited to 'Frameworks/QueryKit/Source/QKQueryGenericParameter.h')
-rw-r--r-- | Frameworks/QueryKit/Source/QKQueryGenericParameter.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/Frameworks/QueryKit/Source/QKQueryGenericParameter.h b/Frameworks/QueryKit/Source/QKQueryGenericParameter.h index 562689f5..1c782b6a 100644 --- a/Frameworks/QueryKit/Source/QKQueryGenericParameter.h +++ b/Frameworks/QueryKit/Source/QKQueryGenericParameter.h @@ -28,13 +28,13 @@ // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR // OTHER DEALINGS IN THE SOFTWARE. -@interface QKQueryGenericParameter : NSObject +#import "QKQueryConstruct.h" + +@interface QKQueryGenericParameter : QKQueryConstruct { id _value; - BOOL _useQuotedIdentifier; NSString *_field; - NSString *_identiferQuote; } /** @@ -43,16 +43,6 @@ @property(readwrite, retain, getter=field, setter=setField:) NSString *_field; /** - * @property _identifierQuote - */ -@property(readwrite, retain, getter=identifierQuote, setter=setIdentifierQuote:) NSString *_identiferQuote; - -/** - * @property _useQuotedIdentifier Indicates whether or not this parameters field should be quoted. - */ -@property(readwrite, assign, getter=useQuotedIdentifier, setter=setUseQuotedIdentifier:) BOOL _useQuotedIdentifier; - -/** *@property _value The value component of the parameter. */ @property(readwrite, retain, getter=value, setter=setValue:) id _value; |