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

31 lines
810 B
C++
Executable File

//
// Copyright (c) 2002-2006 greg Landrum, Rational Discovery LLC
//
// @@ All Rights Reserved @@
//
#ifndef __RD_BITVECTS_UTILS_H__
#define __RD_BITVECTS_UTILS_H__
#include "BitVects.h"
#include <string>
//! \brief Construct a BitVect from the ASCII representation of a
//! Daylight fingerprint string
template <typename T>
void FromDaylightString(T &sbv,std::string s);
//! \brief Construct a BitVect from the ASCII representation of a
//! bit string (i.e. a bunch of zeros and ones)
template <typename T>
void FromBitString(T &sbv,const std::string &s);
//! Convert a SparseBitVector to an ExplicitBitVector
/*!
\return a pointer to an ExplicitBitVector
<b>Note:</b> the caller is responsible for <tt>delete</tt>ing this.
*/
ExplicitBitVect *convertToExplicit(const SparseBitVect *sbv);
#endif