00001 //------------------------------------------------------------------------------ 00002 // This file is part of the OpenStructure project <www.openstructure.org> 00003 // 00004 // Copyright (C) 2008-2011 by the OpenStructure authors 00005 // 00006 // This library is free software; you can redistribute it and/or modify it under 00007 // the terms of the GNU Lesser General Public License as published by the Free 00008 // Software Foundation; either version 3.0 of the License, or (at your option) 00009 // any later version. 00010 // This library is distributed in the hope that it will be useful, but WITHOUT 00011 // ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00012 // FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 00013 // details. 00014 // 00015 // You should have received a copy of the GNU Lesser General Public License 00016 // along with this library; if not, write to the Free Software Foundation, Inc., 00017 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00018 //------------------------------------------------------------------------------ 00019 #ifndef OST_QUERY_AST_FW_HH 00020 #define OST_QUERY_AST_FW_HH 00021 00022 namespace ost { namespace mol { namespace impl { 00023 00024 class WithinParam; 00025 class StringOrRegexParam; 00026 class Node; 00027 class LogicOpNode; 00028 class SelNode; 00029 00030 typedef enum { 00031 LOP_OR, LOP_AND 00032 } LogicOP; 00033 00034 typedef enum { 00035 COP_EQ, COP_NEQ, COP_GE, COP_LE, COP_LT, COP_GT 00036 } CompOP; 00037 00038 00039 }}} 00040 00041 #endif