1*6f0278cdSOliver Tappe /* 2*6f0278cdSOliver Tappe * Copyright 2011, Haiku, Inc. 3*6f0278cdSOliver Tappe * Distributed under the terms of the MIT License. 4*6f0278cdSOliver Tappe */ 5*6f0278cdSOliver Tappe #ifndef _PACKAGE__PACKAGE_RESOLVABLE_OPERATOR_H_ 6*6f0278cdSOliver Tappe #define _PACKAGE__PACKAGE_RESOLVABLE_OPERATOR_H_ 7*6f0278cdSOliver Tappe 8*6f0278cdSOliver Tappe 9*6f0278cdSOliver Tappe namespace BPackageKit { 10*6f0278cdSOliver Tappe 11*6f0278cdSOliver Tappe 12*6f0278cdSOliver Tappe enum BPackageResolvableOperator { 13*6f0278cdSOliver Tappe B_PACKAGE_RESOLVABLE_OP_LESS, 14*6f0278cdSOliver Tappe B_PACKAGE_RESOLVABLE_OP_LESS_EQUAL, 15*6f0278cdSOliver Tappe B_PACKAGE_RESOLVABLE_OP_EQUAL, 16*6f0278cdSOliver Tappe B_PACKAGE_RESOLVABLE_OP_NOT_EQUAL, 17*6f0278cdSOliver Tappe B_PACKAGE_RESOLVABLE_OP_GREATER_EQUAL, 18*6f0278cdSOliver Tappe B_PACKAGE_RESOLVABLE_OP_GREATER, 19*6f0278cdSOliver Tappe // 20*6f0278cdSOliver Tappe B_PACKAGE_RESOLVABLE_OP_ENUM_COUNT 21*6f0278cdSOliver Tappe }; 22*6f0278cdSOliver Tappe 23*6f0278cdSOliver Tappe 24*6f0278cdSOliver Tappe } // namespace BPackageKit 25*6f0278cdSOliver Tappe 26*6f0278cdSOliver Tappe 27*6f0278cdSOliver Tappe #endif // _PACKAGE__PACKAGE_RESOLVABLE_OPERATOR_H_ 28