CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Vovik

Search: Search took 0.03 seconds.

  1. Replies
    7
    Views
    6,972

    Re: Looking for bitset library

    About 500 000 000 bits in a mask. So space optimization play a lot (as the program should work with several masks at the same time).
  2. Replies
    7
    Views
    6,972

    Re: Looking for bitset library

    In my project it is a common task to store and work with large bit masks, that contain less number of ones. So they could be compressed well in memory. I found one library called BitMagic...
  3. Replies
    7
    Views
    6,972

    Looking for bitset library

    Hallo all,
    I'm looking for some good library, that works with bitsets or bitarrays. Anybody knows something better then boost::dynamic_bitset? No matter if the library is open source or commercial....
  4. Replies
    7
    Views
    2,301

    Unhandled exception in managed DLL

    Hello all,

    I have some managed wrapper for native C++ code, that contains following:

    void Reset(T* ptr)
    {
    try
    {
    if ( m_ptr != NULL && ptr != m_ptr )
    ...
Results 1 to 4 of 4





Click Here to Expand Forum to Full Width

Featured