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

View Poll Results: Do you use Boost Library?

Voters
11. You may not vote on this poll
  • I’ve never heard of the Boost (What's Boost)

    1 9.09%
  • I’ve never used the Boost library

    3 27.27%
  • I've used Boost before, but it's not in my current development environment

    5 45.45%
  • I'm currently using Boost in my development environment

    2 18.18%
Results 1 to 7 of 7
  1. #1
    Join Date
    Aug 2000
    Location
    New Jersey
    Posts
    968

    Do you use Boost library? (New 2007 Survey)

    Hi,

    I'm trying to determine how common it is to see boost in a development environment, and if most C++ developers are aware of the boost library.

    Boost is a free portable library, that basically extends the standard C++ library.
    See following link:
    http://www.boost.org/

    Please post your vote on the POLL displayed on the top of this page.

    Thank you for your time,
    Axter (David Maisonave)
    Last edited by Axter; August 1st, 2007 at 02:18 PM.
    David Maisonave
    Author of Policy Based Synchronized Smart Pointer
    http://axter.com/smartptr


    Top ten member of C++ Expert Exchange.
    C++ Topic Area

  2. #2
    Join Date
    Dec 2004
    Location
    Poland
    Posts
    1,165

    Re: Do you use Boost library? (New 2007 Survey)

    I use boost for almost every C++ project, when standard library is not enough. I find it great extension for standard C++ library, however, it still IMO lacks some things (i. e. big numbers).

    Cheers
    B+!
    'There is no cat' - A. Einstein

    Use [code] [/code] tags!

    Did YOU share your photo with us at CG Members photo gallery ?

  3. #3
    Join Date
    Oct 2002
    Location
    Timisoara, Romania
    Posts
    14,360

    Re: Do you use Boost library? (New 2007 Survey)

    I (and the team I'm working in) am using mainly the sprit library from boost, but other things too, such as shared_ptr.
    Last edited by cilu; August 2nd, 2007 at 12:51 AM.
    Marius Bancila
    Home Page
    My CodeGuru articles

    I do not offer technical support via PM or e-mail. Please use vbBulletin codes.

  4. #4
    Join Date
    Oct 2000
    Location
    London, England
    Posts
    4,773

    Re: Do you use Boost library? (New 2007 Survey)

    No, why use boost shared pointers when I can use the wonderful Axter ones?

    Actually where I work we do have boost. shared_ptr is probably the most used component but it wasn't being used in the project I inherited and when I started rewriting sections I didn't know boost was actually there on the file-system, plus it is only there for UNIX and not for Windows.

  5. #5
    Join Date
    Aug 2000
    Location
    New Jersey
    Posts
    968

    Re: Do you use Boost library? (New 2007 Survey)

    Was there a unique UNIX requirement, that they only needed it for?
    David Maisonave
    Author of Policy Based Synchronized Smart Pointer
    http://axter.com/smartptr


    Top ten member of C++ Expert Exchange.
    C++ Topic Area

  6. #6
    Join Date
    Mar 2002
    Location
    St. Petersburg, Florida, USA
    Posts
    12,125

    Re: Do you use Boost library?

    Two main reasons I do not use Boost (I think it is a great product).

    1) Much of my development is in managed (C# typically) environments. The capabilities of the CLR address many things that were provided by Boost.

    2) When I still do native C++, it is typically custom work for a client. If they already use Boost, then great, I will use it. But if they don't the issues with getting them to adopt and learn a third party library can cause complications. As a result my libraries are "Boost-free", not because of technical reasons, but because of business reasons.
    TheCPUWizard is a registered trademark, all rights reserved. (If this post was helpful, please RATE it!)
    2008, 2009,2010
    In theory, there is no difference between theory and practice; in practice there is.

    * Join the fight, refuse to respond to posts that contain code outside of [code] ... [/code] tags. See here for instructions
    * How NOT to post a question here
    * Of course you read this carefully before you posted
    * Need homework help? Read this first

  7. #7
    Join Date
    Apr 2007
    Location
    Mars NASA Station
    Posts
    1,436

    Thumbs up Re: Do you use Boost library?

    Any good tutorial about boost library beside the official documentation?

    Thanks for your help.

    Your help is greatly appreciated by me an others.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured