mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-04 21:54:27 +08:00
21 lines
362 B
C
Executable File
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
|