Files
rdkit/Code/Query/QueryObjects.h
Paolo Tosco c08ea49bda - enable building DLLs on Windows (#1861)
* - enable building DLLs on Windows

* - export.h and test.h are now auto-generated by CMake
2018-05-16 08:42:41 +02:00

39 lines
837 B
C++

//
// Copyright (c) 2003-2006 Greg Landrum and Rational Discovery LLC
//
// @@ All Rights Reserved @@
// This file is part of the RDKit.
// The contents are covered by the terms of the BSD license
// which is included in the file license.txt, found at the root
// of the RDKit source tree.
//
/*!
\file QueryObjects.h
\brief Pulls in all the query types.
*/
#include <RDBoost/export.h>
#ifndef __RD_QUERYOBJECTS_H__
#define __RD_QUERYOBJECTS_H__
#include "Query.h"
#include "EqualityQuery.h"
#include "LessQuery.h"
#include "LessEqualQuery.h"
#include "GreaterQuery.h"
#include "GreaterEqualQuery.h"
#include "RangeQuery.h"
#include "SetQuery.h"
#include "AndQuery.h"
#include "OrQuery.h"
#include "XOrQuery.h"
namespace Queries {
typedef enum { COMPOSITE_AND, COMPOSITE_OR, COMPOSITE_XOR } CompositeQueryType;
}
#endif