Files
rdkit/Code/DataStructs/BitVects.h
Greg Landrum 75a79b6327 initial import
2006-05-06 22:20:08 +00:00

21 lines
362 B
C
Executable File

//
// Copyright (c) 2001-2006 greg Landrum and Rational Discovery LLC
//
// @@ All Rights Reserved @@
//
/*! \file BitVects.h
\brief Pulls in all the BitVect classes
*/
#ifndef __BITVECTS_H__
#define __BITVECTS_H__
#include "BitVect.h"
#include "ExplicitBitVect.h"
#include "SparseBitVect.h"
typedef SparseBitVect SBV;
typedef ExplicitBitVect EBV;
#endif