License: Public Domain
Author:  David J. Sankel (camio@yahoo.com)
Description: This is a simple example of using the ffi to use c++ classes 
  in haskell.

fooble.h   = class declarations.
fooble.cpp = class implimentation.

fooble_stub.h 
fooble_stub.cpp = the stub for interfacing c++ via. c.

Main.hs = the code for interfacing c to haskell classes and example useage

Makefile = Contains the necessary flags to compile such a project with gcc 
  and ghc.

Note: the ghc ffi interface is not standard.  When it implements the 
  standard (which should be soon) I'll release a new example.

