Files
rdkit/Code/DataStructs/BitVects.h
Greg Landrum 052ec66542 cleanups:
remove x bit from headers and sources;
remove a couple empty files from Code/GraphMol
2010-09-08 04:25:57 +00:00

21 lines
362 B
C

//
// 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