Thread: Free Software Library!

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708

    Post Free Software Library!

    Well, sort of Basically, I am trying to get people interested in my software components so that one day I may perhaps make my living developing them! Sounds kinda kooky, huh? Anyway, here is my first offering: A multithreaded C++ class called QuickThread. Basically, it lets you pack as many void(*)(void) functions into it as you wish, and then runs them continuously in sequence. Adding, removing, starting, stopping, suspending are all as easy as calling a single function. So the point is the class was made for ease of use, targeted toward the beginner but fun enough for the expert. Try it out! The software is free, but not open-source. You may use it for whatever you'd like, both commercial and otherwise - there is no license.


    [edit]

    BTW: please try to use the lib before making random comments!

    [/edit]

    [edit2]

    where'd it go

    I reposted the library below...have fun with it!

    [/edit2]
    Last edited by Sebastiani; 10-09-2002 at 11:01 AM.
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. What's an import library?
    By chiefmonkey in forum C++ Programming
    Replies: 1
    Last Post: 06-19-2009, 05:00 PM
  2. my free c++ library
    By jinhao in forum A Brief History of Cprogramming.com
    Replies: 0
    Last Post: 11-01-2007, 10:00 PM
  3. Doing research paper, confused by fsf's definition of Free Software.
    By indigo0086 in forum A Brief History of Cprogramming.com
    Replies: 12
    Last Post: 10-13-2007, 09:49 AM
  4. Recommend free flowchart software and guides
    By milkydoo in forum C++ Programming
    Replies: 7
    Last Post: 07-14-2003, 08:10 PM