16f0278cdSOliver Tappe /* 26f0278cdSOliver Tappe * Copyright 2011, Haiku, Inc. 36f0278cdSOliver Tappe * Distributed under the terms of the MIT License. 46f0278cdSOliver Tappe */ 56f0278cdSOliver Tappe #ifndef _PACKAGE__PACKAGE_RESOLVABLE_OPERATOR_H_ 66f0278cdSOliver Tappe #define _PACKAGE__PACKAGE_RESOLVABLE_OPERATOR_H_ 76f0278cdSOliver Tappe 86f0278cdSOliver Tappe 96f0278cdSOliver Tappe namespace BPackageKit { 106f0278cdSOliver Tappe 116f0278cdSOliver Tappe 126f0278cdSOliver Tappe enum BPackageResolvableOperator { 13*07b37bb0SOliver Tappe B_PACKAGE_RESOLVABLE_OP_LESS = 0, 14*07b37bb0SOliver Tappe B_PACKAGE_RESOLVABLE_OP_LESS_EQUAL = 1, 15*07b37bb0SOliver Tappe B_PACKAGE_RESOLVABLE_OP_EQUAL = 2, 16*07b37bb0SOliver Tappe B_PACKAGE_RESOLVABLE_OP_NOT_EQUAL = 3, 17*07b37bb0SOliver Tappe B_PACKAGE_RESOLVABLE_OP_GREATER_EQUAL = 4, 18*07b37bb0SOliver Tappe B_PACKAGE_RESOLVABLE_OP_GREATER = 5, 196f0278cdSOliver Tappe // 206f0278cdSOliver Tappe B_PACKAGE_RESOLVABLE_OP_ENUM_COUNT 216f0278cdSOliver Tappe }; 226f0278cdSOliver Tappe 236f0278cdSOliver Tappe 246f0278cdSOliver Tappe } // namespace BPackageKit 256f0278cdSOliver Tappe 266f0278cdSOliver Tappe 276f0278cdSOliver Tappe #endif // _PACKAGE__PACKAGE_RESOLVABLE_OPERATOR_H_ 28