home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk1.iso / answers / C++-faq / libraries next >
Text File  |  1993-12-03  |  73KB  |  2,078 lines

  1. Newsgroups: comp.lang.c++,comp.answers,news.answers
  2. From: nikki@trmphrst.demon.co.uk (Nikki Locke)
  3. Path: senator-bedfellow.mit.edu!bloom-beacon.mit.edu!uhog.mit.edu!europa.eng.gtefsd.com!uunet!pipex!uknet!demon!trmphrst.demon.co.uk!nikki
  4. Subject: Available C++ libraries FAQ
  5. Followup-To: poster
  6. Reply-To: cpplibs@trmphrst.demon.co.uk
  7. Summary: Contains a list of available C++ libraries, both PD and commercial.
  8. X-Mailer: cppnews news/mail for DOS
  9. Organization: Trumphurst Ltd.
  10. Expires: Sun, 9 Jan 1994 00:00:00 GMT
  11. Supersedes: <Nov93c++libsFAQ@trmphrst.demon.co.uk>
  12. Approved: news-answers-request@MIT.Edu
  13. Lines: 2059
  14. Date: Fri, 3 Dec 1993 19:21:56 +0000
  15. Message-ID: <Dec93c++libsFAQ@trmphrst.demon.co.uk>
  16. Sender: usenet@demon.co.uk
  17. Xref: senator-bedfellow.mit.edu comp.lang.c++:60313 comp.answers:2892 news.answers:15458
  18.  
  19. Archive-name: C++-faq/libraries
  20. Comp-lang-c++-archive-name: C++-faq/libraries
  21. Last-modified: 1993/12/03
  22.  
  23. Here is the third draft of a list of available C++ libraries I am 
  24. compiling. I intend to post this monthly (unless there are any 
  25. complaints). It is also submitted to news.answers, and archived along
  26. with all the other Usenet FAQ lists at rtfm.mit.edu. 
  27.  
  28. I have not included a credits list, because it would be nearly as large as
  29. the rest of the file! Many thanks to all those who contributed, and I 
  30. hope you won't be offended that I haven't mentioned you. One recent 
  31. contribution of note is a C++ matrix class listing posted to the net by 
  32. Keith (kbriggs@maths.adelaide.edu.au).
  33.  
  34. Entries are in the order I received them, i.e. totally random. Some future
  35. version might have the entries in alphabetical order, but don't hold your 
  36. breath :-)
  37.  
  38. If your library isn't mentioned, or you wish to update your entry in this 
  39. list, feel free to mail me the new entry.  Please note that entries will 
  40. be restricted to a couple of paragraphs - if you send me a 100k text file 
  41. giving minute details, I will have to summarise it. It is much easier for 
  42. me if you just send me an entry which is the right size to start with.
  43.  
  44. Please mail comments, criticisms, additions and amendments to me at
  45. cpplibs@trmphrst.demon.co.uk.
  46.  
  47. Libraries available via ftp
  48. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  49. ---------------------------------------------------------
  50. Lapack++
  51.  
  52. Description : C++ version of some of lapack fortran code.
  53. Author      : J. Dongarra, R. Pozo, D. Walker
  54. Version     : 0.9 beta
  55. Comments    : Developmental version of proposed C++ version of lapack.
  56.               Contains blas.h++ etc, but needs Fortran library to link.
  57. Documents   : Overview paper (9 pages postscript), release notes (7 page ps)
  58.  
  59.     ftp from netlib2.cs.utk.edu
  60.     in lapack++/*
  61. ---------------------------------------------------------
  62. MatClass
  63.  
  64. Description : a C++ class for numerical computation
  65. Author      : Chris Birchenhall (chris.birchenhall@mailhost.mcc.ac.uk}
  66. Comments    : Very complete.
  67.               *  Offers a general purpose dense, real matrix class
  68.               *  Has a family of decomposition classes based on
  69.                  LU, Cholesky, Householder QR and SVD
  70.               *  Has a family of OLS regression classes based on
  71.                  above decompositons
  72.               *  A family of special function classes
  73.               *  Random number class
  74.               *  Has a simplified I/O structure
  75. Documents   : Very thorough tex manual, with discussion of design philosophy.
  76.               Currently the manual does not cover all the features of the I/O.
  77.  
  78.     ftp from uts.mcc.ac.uk (130.88.200.3)
  79.     pub/matclass
  80. ---------------------------------------------------------
  81. Blas.cpp.shar.z
  82.  
  83. Author      : Damian McGuckin (damianm@eram.esi.com.au)
  84. Description : a BLAS in C++
  85.  
  86.     ftp from usc.edu
  87.     in pub/C-numanal
  88. ---------------------------------------------------------
  89. C++Wrapper.
  90.  
  91. It provides:
  92. - wrappers around sockects API
  93. - wrappers around interrupt API
  94. - distributed logger
  95. - everything needed to build the core of a distributed application
  96.  
  97.     ftp from ics.uci.edu 
  98.     in gnu/C++wrappers.tar.Z. 
  99. ---------------------------------------------------------
  100. Texas Persistant Store
  101.  
  102. Paul R. Wilson and Sheetal V. Kakkad
  103. Object-Oriented Programming Systems research group (oops@cs.utexas.edu)
  104. Computer Sciences Dept., University of Texas at Austin
  105.  
  106. Texas is a free persistent store that can be used with standard C++ compilers,
  107. and works efficiently with very little modification to most C++ programs.
  108. It runs on several varieties of UNIX and should be very easy to port to most
  109. modern operating systems, such as OS/2, Windows NT, Mach, Windows 4.0, etc.
  110. (If things we hear are correct, Linux will provide the necessary virtual
  111. memory features soon, too, and Texas will be ported about fifteen minutes 
  112. later. :-)
  113.  
  114. Texas uses "pointer swizzling at page fault time", an address translation
  115. techique that converts pointers from an abstract format to actual virtual
  116. memory addresses when pages are first touched and brought into memory.
  117. (A similar technique, invented independently, is used in the market-leading
  118. persistent store/OODB, ObjectStore from Object Design Inc.)  This allows
  119. Texas to be highly portable, avoiding any assumptions about where a page
  120. of data will be an a process' virtual memory address space; it can also
  121. support very large addresses spaces efficiently on stock 32-bit hardware.
  122. (It could also be used to efficiently provide shared address spaces across
  123. networked heterogenous machines with different hardware address sizes, e.g.,
  124. across 32- and 64-bit machines.)
  125.  
  126. mailing list : oops@cs.utexas.edu
  127.  
  128.     ftp from cs.utexas.edu
  129.     in pub/garbage/texas
  130.     More info in pub/garbage/swizz.ps
  131.     and pub/garbage/texaspstore.ps
  132. ---------------------------------------------------------
  133. wxWindows is a C++ class library for building Motif, Open Look,
  134. Windows 3.1 and NT applications from the same source code. One simple
  135. API is provided for all platforms. wxWindows supports objects such as
  136. frames, subwindows, buttons, list boxes, icons, and bitmaps, and
  137. supports drawing into canvases, PostScript files, Windows printers,
  138. metafiles and bitmaps using the same drawing primitives.
  139.  
  140. wxWindows provides a hypertext help facility, and a utility for
  141. maintaining documentation in printed and three hypertext formats. It
  142. also provides an interprocess communication API based on DDE, that
  143. works under both Windows 3.1 and UNIX. Documentation is available in
  144. PostScript, RTF, Windows Help, wxHelp and HTML formats.
  145.  
  146.     Julian Smart
  147.     Artificial Intelligence Applications Institute
  148.     University of Edinburgh
  149.     80 South Bridge
  150.     Edinburgh
  151.     Scotland
  152.     EH1 1HN
  153.     EMAIL: J.Smart@ed.ac.uk
  154.     TEL:   031 650 2746
  155.  
  156.     ftp from skye.aiai.ed.ac.uk (192.41.104.6),
  157.     in directory pub/wxwin.
  158. ---------------------------------------------------------
  159. CNCL
  160.  
  161. Universal classes:
  162.     * Tree structured class hierarchy, similar to NIHCL.
  163.     * Classes for general purposes such as arrays, linked lists,
  164.       strings.
  165.     * Interface classes for UNIX system calls: pipes, select.
  166. Simulation:
  167.     * Event driven simulation.
  168.     * Statistical evaluation.
  169.     * Random number generators and distributions.
  170. Fuzzy logic:
  171.     * Fuzzy sets, fuzzy variables, fuzzy rules and inference
  172.       engine for building fuzzy controllers and expert systems.
  173. EZD:
  174.     * Interface classes for DEC's ezd graphics server.
  175.  
  176. This version of CNCL is known to compile and run on the following
  177. systems:
  178.     * SUN SPARCstation, SUNOS 4.1.3, GNU g++ 2.3.3/2.4.5,
  179.       libg++ 2.3/2.4
  180.     * SUN 3/60, SUNOS 4.1.3, GNU g++ 2.3.3/2.4.5,
  181.       libg++ 2.3/2.4
  182.     * LINUX 0.99.13, GNU g++ 2.4.5, libc 4.4.1, libc 4.4.4 +
  183.       libg++ 2.4
  184.  
  185. Distributed under the GNU Library General Public License.
  186.  
  187.     Communication Networks
  188.     Aachen University of Technology
  189.     D-52056 Aachen
  190.     Germany
  191.     Email: mj@dfv.rwth-aachen.de (Martin Junius)
  192.  
  193.     ftp from ftp.dfv.rwth-aachen.de  (137.226.4.111)
  194.     in directory pub/CNCL
  195. ---------------------------------------------------------
  196. RTTI implementation
  197.  
  198.     ftp from invaders.dcrl.nd.edu (129.74.18.54)
  199.     in /pub/software/rtti.tar.Z
  200.  
  201.     Arindam Banerji 
  202.     axb@cse.nd.edu 
  203.  
  204.     384 FitzPatrick Hall
  205.     Dept. of Computer Science & Engg. 
  206.     University of Notre Dame
  207.     Notre Dame, IN 46556
  208.     (219)-631-5273
  209.     (219)-631-5772
  210. ---------------------------------------------------------
  211. Lily (LIsp LibrarY) C++ class library which gives C++ programmers the
  212. ite LISP-style code. 
  213.  
  214. I think Lily will be useful in academia for instructors who
  215. want to teach artificial intelligence techniques with C++.  The
  216. garbage collection mechanism employed by Lily is slow which will make it
  217. unattractive for commercial use.
  218.  
  219. Documentation is minimal.  The "Lily User's Guide" (in file lily.txt) provides
  220. a good overview of the architecture of Lily -- the document is unfinished.  
  221. All of the example programs are from Winston's book "LISP Second Edition" so
  222. you will be much better off if you have a copy.  Steele's "Common LISP" 
  223. describes the behavior of the LISP functions.  
  224.  
  225. Lily uses the GNU Library General Public License.
  226.  
  227. Lily works well with GNU g++ version 2.4.5 (and probably earlier releases).
  228.  
  229. Lily works with Turbo C++ for Windows but not with Turbo C++ (though the
  230. current version hasn't been tested with Turbo C++ for Windows).
  231.  
  232. Lily does *not* work with AT&T's cfront because cfront does not handle 
  233. temporary objects very well.
  234.  
  235.     ftp from sunsite.unc.edu (152.2.22.81)
  236.     in /uploads/lily-0.1.tar.gz 
  237. ---------------------------------------------------------
  238. DiamondBase is a library of C++ routines and utilities that allow you 
  239. to add Relational Database functionality to your C++ programs. It
  240. is written entirely in C++, and great pains have been taken to
  241. ensure it compiles under a variety of compilers including gcc,
  242. cfront and Borland's C++ compiler for OS/2. It runs on a wide
  243. variety of Unix platforms and OS/2. There are no plans to support
  244. DOS or Windows at the moment. It comes with a 47 page manual.
  245.  
  246. Contact:
  247.     darrenp@dibbler.cs.monash.edu.au
  248.     kevinl@bruce.cs.monash.edu.au
  249.     davison@molly.cs.monash.edu.au
  250.  
  251.     ftp from pippin.cs.monash.edu.au
  252.     in pub/export/?
  253. ---------------------------------------------------------
  254. GINA++ - An O-O application framework for C++, X11R5, and OSF/Motif
  255.  
  256. Requires:  AT&T 3.0 based C++ compiler (Sun C++ 2.0.1), X11R5, Motif 1.2
  257. Platforms supported:    Sun Sparc, HP
  258.  
  259. GINA++ (The Generic INteractive Application for C++) is an object-
  260. oriented application framework that facilitates the development of
  261. applications with a graphical user interface. It is written in C++ and
  262. uses OSF/Motif and X for the user interface parts. GINA++ comes as a
  263. library of C++ classes, 10 small to medium demo applications, and it is
  264. fully documented. 
  265.  
  266. Components of GINA++ are: (1) A C++ encapsulation of OSF/Motif providing
  267. easy-to-use mechanisms for deriving new widget classes completely in C++,
  268. (2) Support for object-oriented graphics (rectangles, arrows, circle,
  269. etc), (3) An unlimited undo/redo history mechanism, (4) supporting
  270. classes for data structures (list, arrays, etc), run-time type
  271. information, and a notification mechanism. 
  272.  
  273. The classes of GINA++ constitute an executable program - the generic
  274. application - which possesses the basic functionality and the user
  275. interface components common to all interactive graphical applications,
  276. but lacks any application-specific behavior. The predefined functionality
  277. and behavior is inherited by deriving subclasses from the existing GINA++
  278. classes. Application specific behavior is implemented by adding new
  279. classes and member functions. Differences to the standard application are
  280. coded by refining virtual member functions inherited from GINA++. 
  281.  
  282. Author: Andreas Baecker (baecker@gmd.de), 
  283.     GMD, 
  284.     P.O. Box 1316, 
  285.     D-53731 Sankt Augustin
  286.  
  287.     ftp from ftp.gmd.de:
  288.     in /gmd/ginaplus
  289.     or ftp.x.org:
  290.     in /contrib
  291. ---------------------------------------------------------
  292. Motif++ - Ronald van Loon.
  293. A wrapper-library, that encapsulates Motif widgets in C++ classes. All
  294. resources of these Widgets can now be set through member-functions, while
  295. objects can be used in callback-functions. 
  296.  
  297. The July 93 release offers:
  298. - Easy configuration (even for non-imake-gurus)
  299. - Full support for X11R4 as well as X11R5
  300. - Full support for Motif 1.1 and Motif 1.2 (including Drag and Drop)
  301. - Support for Xbae widgetset 
  302. - Support for the xpm library
  303. - Percentage widgets
  304. - Generic Widget
  305. - Support for WCL Table Widget
  306. - A library for easy manipulation of Visuals 
  307. - A library that reads PBMPLUS files, as well as providing an extension to 3D
  308.   of the format.
  309. - Lots of demos and testfiles (even somewhat useful programs)
  310. - An article I wrote on the usage of Motif, X and C++, previously posted
  311.   on Usenet.
  312. - all filenames smaller than 14 characters
  313.  
  314. Requires:
  315.     X11R4 or any later version
  316.     Motif 1.1 or any later version
  317.     C++ compiler, compatible with cfront 2.0 or later
  318.     imake
  319.     a bourne shell (sh, bash, ksh ...) that supports shellfunctions.
  320.     sed
  321.  
  322.     mail "rvloon@cv.ruu.nl".
  323.     Tel: +31 33 758 293 (if desparate !)
  324.  
  325.     mailing list : motif++@cv.ruu.nl
  326.     subscriptions : motif++-request@cv.ruu.nl
  327.  
  328.     ftp from decuac.dec.com: 
  329.     in /pub/X11/motif++.28.jul.93.tar.gz
  330.     or from nrcnet0.nrc.ca (132.246.160.2): 
  331.     in /pub/motif++/motif++.28.jul.93.tar.gz
  332.     or from ftp.wg.omron.co.jp: 
  333.     in /pub/X11/misc/MOTIF.AND.WIDGETS/Motif++.tar.Z 
  334.     or from src.doc.ic.ac.uk:
  335.     in /packages/motif++/motif++.28.jul.93.tar.gz
  336. ---------------------------------------------------------
  337. OATH (Object-oriented Abstract Type Hierarchy) was designed
  338. as an experiment in increasing object-oriented reuse.
  339. It has a fairly high learning curve, but potentially 
  340. higher gains if you are looking for a more flexible and
  341. robust abstraction.  It is completely unsupported.
  342.  
  343.     ftp from csc.ti.com (192.94.94.1)
  344.     in pub/oath.tar.Z
  345. ---------------------------------------------------------
  346. COOL (C++ Object-Oriented Library) was designed as an 
  347. experiment in templates and exception handling.  Templates
  348. are implemented via a preprocessor with an advanced macro
  349. capability.  It displays a different set of trade-offs 
  350. from OATH.  It is also completely unsupported.
  351.  
  352.     ftp from csc.ti.com (192.94.94.1)
  353.     in pub/COOL.tar.Z
  354. ---------------------------------------------------------
  355.  
  356. NIHCL (National Institute of Health's C++ Library) is
  357. essentially a mapping of part of Smalltalk's library
  358. into C++.  It lies somewhere between OATH and COOL.
  359. It is a little better supported and there is a textbook
  360. by the author, Keith Gorlen, that is fairly good documentation.
  361. However, the Smalltalk hierarchy is not completely 
  362. consistent (IMO) with the C++ strong typing nature.
  363. It is weakly supported.
  364.  
  365.     ftp from alw.nih.gov (198.231.128.251)
  366.     in pub/nihcl.tar.Z
  367. ---------------------------------------------------------
  368. libg++ (GNU's C++ library) is probably only relevant if
  369. you are using g++; and if so, you already know about it.
  370. It does have some good implementations of bignum's and
  371. of regular expressions and strings.
  372.  
  373.     ftp from aeneas.mit.edu (18.71.0.38)
  374.     in pub/gnu/libg++-*
  375. ---------------------------------------------------------
  376. InterViews is an excellent GUI class library developed by Stanford
  377. University. Make sure you get v3.1 or later. This library contains
  378. excellent examples of multiple inheritance used profitably. I understand
  379. that InterViews development will not continue past the current version;
  380. author Mark Linton is concentrating his efforts on the X Consortium
  381. Fresco project, which should show up in X11R6. 
  382.  
  383.     ftp from interviews.stanford.edu
  384. ---------------------------------------------------------
  385. Unidraw is a graphical editor building library based on top
  386. of InterViews.
  387.  
  388.     ftp from interviews.stanford.edu
  389. ---------------------------------------------------------
  390. ET++ is a large GUI library and other C++ tools developed
  391. in Europe.
  392.  
  393.     ftp from ftp.inria.fr
  394.     in gnu/et++-2.0.tar.Z
  395. ---------------------------------------------------------
  396. LEDA, A Library of Efficient Data Types and Algorithms, by Stefan N"aher
  397. from Germany. It is available for educatioal purposes but its NOT in the
  398. public domain. 
  399.  
  400. Provides basic data-types like lists, stacks, queues, trees, sets,
  401. partitions, priority queues and a few others. These are parameterizable
  402. classes, you may add your own datatype and have a priority queue ...
  403. An important datatype is a graph, these are also parameterizable and there
  404. are useful algorithms for them like shortest path, transitive closure,
  405. matching, maximum flow, spanning tree and others, we have implemented a few
  406. algorite
  407. standard library. The latest part deals with computational geometry.
  408.  
  409. It can be used with C++ compilers which understand templates, such as 
  410. cfront 3.0 and g++ 2.4.5.
  411.  
  412.     Stefan Naeher
  413.     Max-Planck-Institut fuer Informatik
  414.     Im Stadtwald, 
  415.     6600 Saarbruecken, 
  416.     Germany
  417.     (stefan@mpi-sb.mpg.de)
  418.  
  419.     ftp from sbsvax.cs.uni-sb.de (134.96.252.31)
  420.     in /pub/LEDA/LEDA-<version>.tar.Z
  421. ---------------------------------------------------------
  422. Code from Hansen's C++ Answers book
  423. by      Tony L. Hansen
  424. ref     "The C++ Answer Book", Addison-Wesley, 1990, ISBN 0-302-11497-6
  425.  
  426.     ftp from netlib@research.att.com
  427.     in c++/answerbook
  428. ---------------------------------------------------------
  429. Code from Coplien's, "Advanced C++ Programming Styles and Idioms"
  430. by      James O. Coplien
  431. ref     "Advanced C++ Programming Styles and Idioms", Addison-Wesley, 1992, ISBN
  432.  
  433.     ftp from netlib@research.att.com
  434.     in c++/idioms
  435. ---------------------------------------------------------
  436. Brent's univariate minimizer and zero finder.
  437. by      Oleg Kiselyov <oleg@ponder.csci.unt.edu, oleg@unt.edu>
  438. ref     G.Forsythe, M.Malcolm, C.Moler, Computer methods for
  439.         mathematical computations.
  440. prec    double
  441. see     c++/serv_cc.shar
  442.  
  443.     ftp from netlib@research.att.com
  444.     in c++/brent_cc.shar
  445. ---------------------------------------------------------
  446. Radix-2 Fast Fourier Transform
  447. by      Oleg Kiselyov <oleg@ponder.csci.unt.edu, oleg@unt.edu>
  448. prec    single/double
  449. see     c++/lin_alg.shar, c++/serv_cc.shar
  450.  
  451.     ftp from netlib@research.att.com
  452.     in c++/fft.shar
  453. ---------------------------------------------------------
  454. High level vector operations
  455.         Contains the Aitken-Lagrange interpolation over the table of uniform or
  456.         arbitrary mesh, and the Hook-Jeevse multidimensional minimizer.
  457. by      Oleg Kiselyov <oleg@ponder.csci.unt.edu, oleg@unt.edu>
  458. prec    single/double
  459. see     c++/lin_alg.shar, c++/serv_cc.shar
  460.  
  461.     ftp from netlib@research.att.com
  462.     in c++/hl_vector.shar
  463. ---------------------------------------------------------
  464. basic linear algebra classes
  465. by      Oleg Kiselyov <oleg@ponder.csci.unt.edu, oleg@unt.edu>
  466. prec    single/double
  467. see     c++/serv_cc.shar
  468.  
  469.     ftp from netlib@research.att.com
  470.     in c++/lin_alg.shar
  471. ---------------------------------------------------------
  472. A couple of functions that ought to be in the standard
  473. C++ environment;
  474. - Updated G++ class File that allows now for the file name to
  475.   include pipes, say,
  476.     File in_file("zcat aaa.Z |","r");
  477. - Resource facility, or managing global "private" parameters
  478.   that specify various program "options". It helps keep
  479.   reasonable number of arguments in function calls.
  480. by      Oleg Kiselyov <oleg@ponder.csci.unt.edu, oleg@unt.edu>
  481.  
  482.     ftp from netlib@research.att.com
  483.     in c++/serv_cc.shar
  484. ---------------------------------------------------------
  485. C++ implementation of differential algebra
  486. by      Leo Michelotti <michelotti@adcalc.fnal.gov>
  487. This is temporarily unavailable while we resolve the question of whether
  488. inclusion of codes from Numerical Recipes makes distribution illegal. 
  489.  
  490.     ftp from netlib@research.att.com
  491.     in c++/mxyzptlk.shar
  492. ---------------------------------------------------------
  493. ParLib++, Parallel Programming Classes for C++:
  494.  
  495.     David Greco
  496.     David.Greco@crs4.it
  497. ---------------------------------------------------------
  498. P++, Parallel Programming Classes for C++:
  499.  
  500.     Dan Quinlan
  501.     danq@lemond.colorado.edu
  502. ---------------------------------------------------------
  503. "C* in C++", Parallel Programming Classes for C++:
  504.  
  505.     Terry Bossomaier
  506.     terry@arp.anu.edu.au
  507. ---------------------------------------------------------
  508. pC++ is a preprocessor for C++ that implements a data parallel
  509. extension. Machines currently supported are CM5, paragon, KSR-1,
  510. sequent, BBNTC2000 (and soon ibm sp1, and cray t3d), as well as in
  511. uniprocessor mode on most workstations.
  512.  
  513.     gannon@cs.indiana.edu
  514. ---------------------------------------------------------
  515. DoPVM - a class built on PVM, for message passing environments.
  516.  
  517.     Skip Hartley
  518.     skip@mathcs.emory.edu
  519. ---------------------------------------------------------
  520. The SPLASH c++ class library
  521.  
  522. (Small Perl-like List And String Handling class library)
  523.  
  524. SPLASH is a c++ class library that implements favourite Perl
  525. constructs.
  526.  
  527. For those not familiar with Perl, it is an excellent scripting language
  528. by Larry Wall and is available for most platforms.
  529.  
  530. This Class library provides List and String handling capabilities based
  531. on those provided in Perl, because the Perl constructs are so useful.
  532.  
  533. This is also available as a compressed tar file or .zoo format with MSDOS
  534. compatible names. 
  535.  
  536.     morris@netcom.com
  537.     jegm@sgi.com
  538.  
  539.     ftp from netcom.com
  540.     in ~ftp/pub/morris/splash.tar.Z
  541.     and ~ftp/pub/morris/splash.zoo
  542. ---------------------------------------------------------
  543. OSE consists of three C++ class libraries, a build environment based on
  544. GNU make, programs for documentation extraction and other miscellaneous
  545. tools. 
  546.  
  547. The C++ libraries include generic classes and some UNIX specific classes.
  548. Collection classes use templates compatable with AT&T C++ 3.0. If you
  549. have a C++ compiler which does not support templates, a template
  550. preprocessor supplied with OSE can be used. 
  551.  
  552. OSE uses a GNU style configure script, making it relatively easy to
  553. install, even on platforms for which it may not yet have been compiled.
  554. For DOS users, a script is provided to create a copy of the C++ libraries
  555. suitable for compilation on that platform. 
  556.  
  557. To get further information about OSE, without actually fetching the
  558. complete package, either fetch the file "ANNOUNCE" from one of the
  559. ftp sites below, or send mail to:
  560.     ose@research.otc.com.au
  561.  
  562. Europe:
  563.     ftp from ftp.th-darmstadt.de [130.83.55.75]
  564.     in directory pub/programming/languages/C++/class-libraries/OSE
  565.  
  566. United States:
  567.     ftp from straylight.acs.ncsu.edu [152.1.65.11]
  568.     in directory /pub/ose
  569.  
  570. Australia:
  571.     ftp from csis.dit.csiro.au [192.41.146.1]
  572.     in directory pub/otc
  573. ---------------------------------------------------------
  574. COOL - Texas Instrument's "C++ Object Oriented Library".
  575.  
  576. COOL includes classes like AVL_Tree, Association, Bignum, Binary_Tree,
  577. Bit_Set, Complex, Date_Time, Envelope, Gen_String, Handle, Hash_Table,
  578. Iterator, List, M_Vector, Matrix, N_Tree, Pair, Quaternion, Queue, Random,
  579. Range, Rational, Regexp, Set, Shared, Stack, String, Timer, Value, Vector.
  580.  
  581. COOL uses a special "template" syntax which is preprocessed by a special 
  582. cpp (distributed with COOL). This enables it to be used with compilers 
  583. which do not support templates.
  584.  
  585.  
  586.     fto from csc.ti.com
  587.     in ~ftp/pub/COOL.tar.Z
  588. ---------------------------------------------------------
  589. GECOOL 2.1 is a reworking and enhancement of Texas Instrument's "C++
  590. Object Oriented Library" (at csc.ti.com in ~ftp/pub/COOL.tar.Z) by some
  591. programmers at General Electric. 
  592.  
  593. JCOOL's main difference from COOL and GECOOL is that it uses real C++
  594. templates instead of a similar syntax that is preprocessed by a
  595. special 'cpp' distributed with COOL and GECOOL.  Of course, this
  596.  
  597.  
  598.     ftp from cs.utexas.edu
  599.     in pub/COOL
  600. ---------------------------------------------------------
  601. SOCKET++
  602.  
  603. C++ iostream like library for sockets and pipes.
  604.  
  605.     ftp from from uvaarpa.virginia.edu:
  606.     in /public_access/socket++-XX.tar.gz (XX - version no)
  607.     or from cs.ucl.ac.uk [128.16.5.31]
  608.     in coside/gnu/sockets++.tar.z
  609. ---------------------------------------------------------
  610. PDBlib is a class library written in C++ for modeling a macromolecular
  611. structure at the level of detail (excluding symmetry information) found
  612. in a Protein Data Back (PDB) file. A class is supplied to read a PDB file
  613. into a PDBlib representation. This class is independent of the actual
  614. representation and other forms of input, for example from a relational
  615. database like SESAM, are possible. 
  616.  
  617. The library is made extensible by a close coupling between intrinsic and
  618. external classes. By writing only to the external classes you will remain
  619. compliant with future versions of the library. 
  620.  
  621. You don't get source code. This is a temporary situation while we attempt
  622. to centralize bug fixes and additions to the library. If you find this
  623. situation unworkable source code is available by signing a copyright
  624. agree distribution. 
  625.  
  626. Platforms:
  627.  
  628. PDBLib.1.0.SGI.tar.Z    Compressed tar file of PDB object classes library
  629.                         and header files for SGI.  AT&T C++ release 2.1 & 3.0
  630.                         compatible.
  631.  
  632. PDBLib.1.0.Sun.tar.Z    Compressed tar file of PDB object classes library
  633.                         and header files for Sun Sparc station.  AT&T C++
  634.                         release 2.1 & 3.0 compatible.
  635.  
  636. PDBLib.1.0.Cvx.tar.Z    Compressed tar file of PDB object classes library
  637.                         and header files for Convex.  AT&T C++ release 2.1
  638.                         compatible.
  639.  
  640. PDBLib.1.0.Alpha.tar.Z  Compressed tar file of PDB object classes library
  641.                         and header files for Dec 3000 (Alpha AXP) with OSF1.
  642.                         Dec C++ (cxx) release 1.2 compatible.
  643.  
  644. Address specific programming questions on PDBlib to Weider Chang, the
  645. author of most of the code (weider@cuhhca.hhmi.columbia.edu). 
  646.  
  647. Address questions concerning PDBview to Ilya Shindyalov
  648. (shindyal@cuhhca.hhmi.columbia.edu)
  649.  
  650. Address general comments, criticisms, questions about future directions
  651. etc. to Phil Bourne (system@cuhhca.hhmi.columbia.edu). 
  652.  
  653.     ftp from cuhhca.hhmi.columbia.edu (128.59.98.1)
  654.     in pub/programs/PDB/PDBlib
  655. ---------------------------------------------------------
  656. molbio++ is a C++ library for molecular biosequence analysis.  Major 
  657. features include:
  658.  
  659. classes and services for
  660.   reading and writing sequence data in the following formats:
  661.     Genbank Flatfile
  662.     EMBL / SwissProt
  663.     GCG / Wisconsin
  664.     Fasta / Pearson
  665.     PIR
  666.     NCBI Retrieve Server (read-only)
  667.   limited parsing of fields and features in biosequence files
  668.   storing amino acid or nucleic acid sequences
  669.   iterating over a biosequence
  670.   calculating and storing counts or frequencies of amino acids
  671.     or nucleotides
  672.   device-independent graphics, via GCG's FIGURE program
  673.   translating nucleotide sequences into proteins using
  674.     the universal genetic code or modifications thereof.
  675.   parsing BLAST output
  676.   calculating pI and molecular weight of proteins
  677.   amino acid hydropathy values of Kyte & Doolittle
  678.  
  679.     ftp from golgi.harvard.edu  (128.103.161.55)
  680.     pub/CONTRIBUTIONS/molbio++
  681. ---------------------------------------------------------
  682. SESAME, by C. Tietz, Neural net software ?
  683.  
  684.     ftp from ftp.gmd.de
  685.     in /gmd/as/sesame.
  686. ---------------------------------------------------------
  687. TOLKIEN (TOoLKIt for gENetics-based applications).
  688.  
  689. The tool contains objects for both GA and classifier system applications."
  690. It's in some kind of alpha-status.
  691.  
  692.     tang028@cs.cuhk.hk
  693. ---------------------------------------------------------
  694. GAME - Parallel Genetic Algorithms Theory and Applications
  695.  
  696. Edited by: J. Stender
  697. Publisher: IOS Press
  698. Frontiers in Artificial Intelligence and Applications series
  699. 1993, 225 pp; hard cover; w/ disk
  700. ISBN: 90 5199 087 1
  701. Price: $85, 59 pounds sterling
  702.  
  703. The first version of the GAME Virtual Machine software and two examples
  704. that come with the book can be obtained also by ftp.
  705.  
  706.     ftp from bells.cs.ucl.ac.uk
  707.     in papagena/game/version1 directory
  708. ---------------------------------------------------------
  709. The Generic Linked List Package is a package to define, create, update
  710. query and delete one or more (nodes of) linked lists, to sort linked
  711. lists, and so on. The user doesn't have to take care of allocating a
  712. number of bytes for a node, inserting on the right place, deleting and
  713. freeing a node and so on.
  714.  
  715.     ftp from ftp.tno.nl or hermes.bouw.tno.nl
  716.     in /pub/TNO/BOUW/Bouwinf/linkedlist0.10.shar
  717. ---------------------------------------------------------
  718. Newmat : a very thorough matrix class
  719.  
  720. volume34, issue 107 of comp.sources.misc
  721.  
  722. Author      : Robert Davies (robertd@kauri.vuw.ac.nz)
  723. Comments    : Optimized expression evaluation.  Many decompositions.
  724. Systems     : Unix (g++ 2.3.3 ok), MS-DOS (Borland C++)
  725.  
  726. People trying to run under Gnu or Watcom should contact the author
  727. for a list of patches.
  728.  
  729.     ftp from unix.hensa.ac.uk
  730.     in /pub/uunet/usenet/comp.sources.misc/volume34/newmat07
  731.     or from plaza.aarnet.edu.au (139.130.4.6):
  732.     in /micros/pc/oak/cplusplus/newmat07.zip
  733. ---------------------------------------------------------
  734. nlmdl : a library for estimation of nonlinear models
  735.  
  736. Nonlinear maximisation, estimation, includes a real matrix class
  737.  
  738. Systems     : Unix, MS-DOS (Turbo C++)
  739. Author      : A. Ronald Gallant, arg@ccvr1.cc.ncsu.edu
  740.  
  741.     ftp from ftp.uu.net
  742.     in /usenet/comp.sources.misc/volume16/nlmdl
  743.     or from ccvr1.cc.ncsu.edu (128.109.212.20)
  744.     in pub/arg/nlmdl
  745. ---------------------------------------------------------
  746. Octave : Matlab-like interactive system for numerical computations
  747.  
  748. Includes C++ classes for matrix manipulation, numerical integration, and
  749. the solution of systems of nonlinear equations, ODEs and DAEs.
  750. Distributed under the GPL. 
  751.  
  752. Systems     : Compiles and runs on SPARC, RS/6000, DEC/Ultrix,
  753.               i386/Linux and probably most Unix-like systems that have
  754.               a working g++/libg++.
  755. Author      : John W. Eaton <jwe@che.utexas.edu>
  756.  
  757.     ftp from ftp.che.utexas.edu
  758.     in /pub/octave/octave-M.N.tar.Z
  759. ---------------------------------------------------------
  760. Andy Register <andy@cerl.gatech.edu> has a matrix library ...
  761.  
  762. It is still under development so there is no documentatin and some
  763. functions have not been throughly tested. It is a departure from most
  764. matrix libs in that it includes things like UpperTriangular different
  765. >from Diagonal, from Row, from Col, etc. 
  766.  
  767.     ftp from ftp.cerl.gatech.edu
  768.     in pub/c++/gtmatrix
  769. ---------------------------------------------------------
  770. Awesime : a C++ task library explicitly designed for simulation.
  771.  
  772. Author      : Dirk Grunwald (grunwald@foobar.cs.colorado.edu)
  773.  
  774.     ftp from ftp.cs.colorado.edu
  775.     in pub/cs/misc/Awesime
  776. ---------------------------------------------------------
  777. BLAS in C++
  778.  
  779. Author      : Damian McGuckin (damianm@eram.esi.com.au)
  780.  
  781.     ftp from usc.edu
  782.     in pub/C-numanal/blas.cpp.shar.z
  783. ---------------------------------------------------------
  784. Cvmath.cc
  785. An include file to make complex math look like regular math.
  786.  
  787. Author      : Leonard Kamlet, lik@engin.umich.edu
  788. Comments    : The file uses a lot of operator overloading, so that
  789.               if x=a+ib and y=c+id, the code for multiplying the two
  790.               together looks like z = x*y;  Also, the file includes nrutil
  791.               from Numerical Recipes, and adds the complex versions for
  792.               vectors and matrices.
  793.  
  794.     ftp from usc.edu
  795.     in pub/C-numanal/cvmath.cc
  796. ---------------------------------------------------------
  797. Gnans : Simulation of stochastic and deterministic dynamical systems
  798.  
  799. System      : SunOS 4.1.x, IRIX, AIX; X11 Release 4-5 incl. Athena Widgets
  800. Author      : Bengt Martensson <bengt@mathematik.uni-Bremen.de>
  801. Comments    : A program (and language) for dynamical systems. Includes
  802.               simple scripting language. Graphical user interface. Copyleft.
  803.  
  804.     ftp from ftp.mathematik.uni-Bremen.de
  805.     in /pub/gnans
  806. ---------------------------------------------------------
  807. Kalman : A class library for Kalman filtering
  808.  
  809. Author      : Skip Carter (skip@taygeta.oc.nps.navy.mil)
  810. Description : A class library for Kalman filtering
  811. Comments    : Contains lumatrix.c++ etc.
  812. Language    : g++ 2.4.2 tested OK.
  813.  
  814.     ftp from usc.edu
  815.     in pub/C-numanal/kalman.tar.gz
  816. ---------------------------------------------------------
  817. Matrix
  818.  
  819. A C++ Matrix class, including a matrix implementation of the backward
  820. error propagation (backprop) algorithm for training multi-layer, feed-
  821. forward artificial neural networks 
  822. Author      : E. Robert (Bob) Tisdale, edwin@cs.ucla.edu
  823. Comments    : A C++ interface to existing C and FORTRAN matrix libraries.
  824. Documents   : LaTeX manual.
  825.  
  826.     ftp from ftp.cs.ucla.edu
  827.     in pub/Matrix.tar.Z
  828. ---------------------------------------------------------
  829. Presto : C++ routines for fine-grained parallel programming (lightweight
  830. threads) on multiprocessors. Tuned for the Sequent machines, but highly
  831. adaptable and customizable. 
  832.  
  833. Systems : Unix-like OS on (moderate) multiprocessor machines 
  834. Author : Brian N. Bershad, Edward D. Lazowska, Henry M. Levy 
  835.  
  836.     frp from cs.washington.edu
  837.     in pub/presto1.0.tar.Z 
  838. -------------------------
  839. Range : C++ class for range arithmetic. 
  840.  
  841. Associated with article in TOMS, Dec 1992 title "Precise computation
  842. using range arithmetic, via C++" 
  843. Author      : Oliver Aberth and Mark J. Schaefer
  844.  
  845.     ftp from math.tamu.edu
  846.     in pub/range/range.tar.Z
  847. ---------------------------------------------------------
  848. SA : library for simulated annealing
  849.  
  850. Author      : Skip Carter (skip@taygeta.oc.nps.navy.mil)
  851.  
  852.     ftp from usc.edu
  853.     in pub/C-numanal/sa.zoo
  854. ---------------------------------------------------------
  855. Sdeint
  856.  
  857. A Runge-Kutta like class for integrating systems of Stochastic
  858. Differential Equations 
  859.  
  860. Author      : Skip Carter, skip@taygeta.oc.nps.navy.mil
  861.  
  862.     ftp from usc.edu
  863.     in pub/C-numanal/sdeint.tar.z
  864. ---------------------------------------------------------
  865. Simpack : tools for writing simulations with a EECS bias
  866.  
  867. Author      : Paul A. Fishwick, fishwick@cis.ufl.edu
  868.  
  869.     ftp from bikini.cis.ufl.edu
  870.     in pub/simdigest/tools/simpack
  871.     See also cis/tech-reports/tr92/tr92-022.ps.Z
  872. ---------------------------------------------------------
  873. PARODY : C++ DATABASE LIBRARY
  874.  
  875. Al Stevens has written a book on the subject called
  876. `Database programming in C++' or something. An article
  877. on the subject was printed in Doctor Dobbs Journal
  878. some time ago.
  879.  
  880. The nice thing is that Stevens also wrote a C++ library
  881. adding persistence to C++, and the source is available.
  882. The library is called PARODY and compiles under most
  883. DOS-based C++ compilers. A slight rewrite of the GUI-
  884. routines has to be done to make it compile under GNU C.
  885.  
  886.     ftp from ftp.mv.com
  887.     in pub/ddj/1992.12/parody.zip 
  888.        pub/ddj/1992.12/parody.dir (directory of zip)
  889. ---------------------------------------------------------
  890. SMURPH : A C++ library which could be useful for building a network
  891. simulator.It comes withextensive documentation and examples.
  892.  
  893.     ftp from menaik.cs.ualberta.ca (129.128.4.241)
  894.     in /pub/smurph*
  895. ---------------------------------------------------------
  896. C++ FEM (Finite Element Method) Library 
  897.  
  898. In addition to FEM related classes, this library also has:
  899.  
  900.         1) Some simple garbage collection stuff
  901.         2) An automatic differentiation library
  902.         3) A sparse matrix library
  903.  
  904. This is an initial release and people should *expect* to have to do some
  905. work to get it running on their system. If you have gcc-2.3.3, libg++-2.
  906. 3[.1], Gnu make and makedepend you shouldn't have too much difficulty
  907. however. The code is unsupported, and is distributed under the terms of
  908. the GNU Public License. 
  909.  
  910.     Michael Tiller
  911.     University of Illinois (Urbana-Champaign)
  912.     (tiller@solace.me.uiuc.edu)
  913.  
  914.     ftp from ftp.uu.net
  915.     in /tmp/femlib.tar.Z
  916. ---------------------------------------------------------
  917. Ode Object database v2.0
  918.  
  919. Ode is an object-oriented database based on the C++ database model.
  920. The primary interface to Ode is the database programming language O++
  921. which is based on C++.
  922.  
  923. Ode is now available to Universities. The current version of Ode runs on
  924. Sun (Sparc) workstations and users must have C++ release 2.0 or a later
  925. release. If you are interested in using Ode and giving us feedback on
  926. your experience with Ode, please send mail to nhg@research.att.com with
  927. the appropriate information. 
  928.  
  929.     Narain Gehani
  930.     AT&T Bell Labs 3D-414
  931.     600 Mountain Ave
  932.     Murray Hill, NJ 07974
  933.  
  934.     ftp from research.att.com.
  935.     in dist/ode2.0/2.0.oppbin.tar.Z
  936. ---------------------------------------------------------
  937. C++SIM 1.0  - a simulation package written in C++. 
  938.  
  939. C++SIM provides discrete process based simulation similar to that
  940. provided by the simulation class and libraries of SIMULA. The linked list
  941. manipulation facilities provided by SIMSET are also included in the
  942. package. 
  943.  
  944. The simulation package requires the use of a threads package and
  945. currently only works with Sun's lightweight process library or the Gnu
  946. thread package (which *is* included in the distribution). The package has
  947. been used on Sun workstations, and, with the exception of the thread
  948. library requirement, contains no system specific code which should make
  949. porting to other systems relatively easy. The code has been compiled
  950. with Cfront 2.1 and Cfront 3.0.1 and g++ 2.3.3
  951.  
  952.     ftp from arjuna.ncl.ac.uk
  953. ---------------------------------------------------------
  954. ADAPTIVE Communication Environment (ACE) C++ IPC wrappers 
  955.  
  956.  
  957. The contents of this release encapsulate the following user-level BSD
  958. and System V Release 4 (SVR4) IPC facilities via type-secure,
  959. object-oriented C++ interfaces:
  960.  
  961.         o Internet and UNIX-domain sockets (including broadcasting)
  962.         o I/O multiplexing via select and poll
  963.         o named pipes (FIFOs) and STREAM pipes (plus connld)
  964.         o the mmap family of memory-mapping APIs
  965.         o System V IPC (i.e., shared memory, semaphores, message queues)
  966.         o SVR4 explicit dynamic linking facilities (i.e., dlopen/dlsym/dlclose)
  967.  
  968.         The release contains complete source code, documentation, and
  969. example test drivers for the C++ wrapper libraries developed as part
  970. of the ADAPTIVE project at the University of Calfornia, Irvine.  The
  971. current release has been tested fairly extensively on Sun workstations
  972. running Sun OS 4.1.2 and Solaris 2.2.  I expect that most of the
  973. release will port easily to other platforms.
  974.  
  975.     ftp from ics.uci.edu (128.195.1.1) 
  976.     in ftp/gnu/ACE_wrappers.tar.2.8.Z
  977. ---------------------------------------------------------
  978. CB++ (CommonBase Database Access Library for C/C++)
  979.  
  980. This library was written in 1989 as a basis for storing C++ objects in
  981. a relational database. The development of such a system was stopped in
  982. 1990 because of problems with the MS-DOS environment used in this time.
  983. My involvement in various user interface projects here in the institute
  984. and otherwhere made it sleep until last week.
  985.  
  986. Okay, here is it. It is only the database access layer of the projected
  987. object storage system but it has some useful features which are provided
  988. by commercial tools out there:
  989.  
  990. * Builds on the C language interface of a database, there is no need
  991.   for a precompiler (like embedded SQL - which is totally unusable in
  992.   combination with C++, at least it was three years ago...)
  993. * Very simple to use. Unlike the native C interfaces of the databases
  994.   it is as simple as embedded SQL or some 4th generation languages.
  995. * Makes applications portable among different SQL databases. The library
  996.   itself is relatively easy to port as the database vendor specific code
  997.  
  998.  
  999.     ftp from ftp.x.org 
  1000.     in /contrib/CB++.0.1.*
  1001. ---------------------------------------------------------
  1002. OBST - persistent object management system 
  1003.  
  1004. The persistent object management system OBST was developed by
  1005. Forschungszentrum Informatik (FZI) as a contribution to the STONE
  1006. project. 
  1007.  
  1008. Sites interested in getting information about new OBST developments
  1009. are welcome to register in their mailing list by sending a mail with
  1010. subject "obst-mailing-list" to stone@fzi.de.
  1011.  
  1012.     Forschungszentrum Informatik FZI
  1013.     STONE Projekt
  1014.     Haid-und-Neu-Strasse 10-14
  1015.     D-7500 Karlsruhe 1
  1016.     Germany
  1017.     Tel : ++49-721-9654-601
  1018.     Fax : ++49-721-9654-609
  1019.     Teletex : 721 190 fziKA
  1020.     email : stone@fzi.de
  1021.  
  1022.     ftp from gate.fzi.de [141.21.4.3]. 
  1023.     in /pub/OBST.
  1024. ---------------------------------------------------------
  1025. GRAS - A Graph-Oriented Database System for SE Applications
  1026. Copyright (C) 1987-1992  Lehrstuhl Informatik III, RWTH Aachen
  1027. This library is free software under the terms of the GNU Library 
  1028. General Public License.
  1029.  
  1030. The system GRAS with interfaces for the programming languages Modula-2
  1031. and C is available as public domain software for Sun3/Sun4 workstations
  1032. (the GRAS system itself is implemented in Modula-2 and consists of many
  1033. layers which might be reusable for the implementation of other systems): 
  1034.  
  1035.   There are several files contain documentation, sources, binaries,
  1036.   and libraries. All binaries are for Sun/4 machines. Sun/3 binaries
  1037.   are shipped only if explicitly requested.
  1038.  
  1039.     Lehrstuhl f"ur Informatik III
  1040.     University of Technology Aachen (RWTH Aachen),
  1041.     Ahornstr. 55,
  1042.     D-5100 Aachen
  1043.     Contact : Dr. Andy Sch"urr (or Richard Breuer),
  1044.     andy@rwthi3.informatik.rwth-aachen.de
  1045.     ricki@rwthi3.informatik.rwth-aachen.de (for technical support)
  1046.  
  1047.  
  1048.     in /pub/unix/GRAS522_3
  1049. ---------------------------------------------------------
  1050. MTL110JE.ZIP -- multithreading class library
  1051.  
  1052. DOS PC/Borland C++ specific.
  1053.  
  1054.     ftp from oak.oakland.edu
  1055.     in /pub/msdos/cplusplus
  1056.     or garbo.uwasa.fi
  1057.     in /pc/c
  1058. ---------------------------------------------------------
  1059. CCL110JE.ZIP -- coroutine class library
  1060.  
  1061. DOS PC/Borland C++ specific.
  1062.  
  1063.     ftp from oak.oakland.edu
  1064.     in /pub/msdos/cplusplus
  1065.     or garbo.uwasa.fi
  1066.     in /pc/c
  1067. ---------------------------------------------------------
  1068. TSR100JE.ZIP -- TSR class library
  1069.  
  1070. DOS PC/Borland C++ specific.
  1071.  
  1072.     ftp from oak.oakland.edu
  1073.     in /pub/msdos/cplusplus
  1074.     or garbo.uwasa.fi
  1075.     in /pc/c
  1076. ---------------------------------------------------------
  1077. XMS101JE.ZIP -- XMS array class library
  1078.  
  1079. DOS PC/Borland C++ specific.
  1080.  
  1081.     ftp from oak.oakland.edu
  1082.     in /pub/msdos/cplusplus
  1083.     or garbo.uwasa.fi
  1084.     in /pc/c
  1085. ---------------------------------------------------------
  1086.  
  1087. Useful ftp sites
  1088. ~~~~~~~~~~~~~~~~
  1089. If you don't have ftp access, send email to ftpmail@decwrl.dec.com
  1090. saying "help".  You will get instructions on how to do ftp via email
  1091. ---------------------------------------------------------
  1092. ftp.th-darmstadt.de
  1093.  
  1094. A major repository of C++ stuff, mostly under the directory tree starting 
  1095. at /pub/programming/languages/C++. Includes a product list (from which
  1096. some of the information in this document was taken) in various formats in 
  1097. sub-directory c++-products.
  1098.  
  1099.     /pub/programming/languages/C++/...
  1100. ---------------------------------------------------------
  1101. ftp.luth.se
  1102.  
  1103.     /pub/languages/c++/ClassLibs/...
  1104. ---------------------------------------------------------
  1105. netlib@research.att.com.
  1106.  
  1107. send mail with the text "send index" or "send index from C++"
  1108. ---------------------------------------------------------
  1109. Simtel
  1110.  
  1111. Note Simtel doesn't have a home at present, but the mirror sites are still
  1112. available, including, for example, oak.oakland.edu.
  1113.  
  1114.     <MSDOS.CPLUSPLUS>
  1115. ---------------------------------------------------------
  1116. Current CUG Library Catalog
  1117.  
  1118. The CUG CD-ROM file listing offers the most comprehensive look at the
  1119. programming tools and utilities available from CUG. The complete
  1120. annotated listing (about 1 megabyte) is available through anonymous ftp
  1121. as follows: 
  1122.  
  1123.     ftp from cdrom.com
  1124.     in /pub/cdrom/cdroms/cug/capsule.txt
  1125. ---------------------------------------------------------
  1126. source-code newsgroups:
  1127.         ftp.uu.net  (e.g. usenet/comp.sources.reviewed archives the
  1128.         comp.sources.reviewed newsgroup).
  1129. ---------------------------------------------------------
  1130. Netlib:
  1131.         research.att.com     email, ftp
  1132.         ornl.gov             email, xnetlib
  1133.         nac.no               email, xnetlib for Europe
  1134.            (e.g. send email to netlib@ornl.gov to access by email)
  1135.         unix.hensa.ac.uk is a mail server useful for Europe.
  1136.         ci.cs.uow.edu.au (130.130.64.3) in Australia
  1137. ---------------------------------------------------------
  1138.  
  1139. Libraries for which I don't know an ftp site
  1140. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1141. GenTools: A Computational Genomic Tool Suite
  1142.  
  1143. The University of Texas System CHPC and collaborators are addressing the
  1144. problems of high performance platforms by developing GenTools, an
  1145. interactive, distributed, loosely integrated, set of tools for DNA and
  1146. protein sequence data analysis, phylogenetic analysis, and restriction
  1147. mapping which combines different algorithm implementations, machines, and
  1148. databases through a "bio-user" friendly set of graphical user interfaces.
  1149.  
  1150.     Sarah Barron
  1151.     GenTools Project Leader
  1152.     Computational Molecular Biology and Genetics Group
  1153.     University of Texas System Center for High Performance Computing
  1154.     Balcones Research Center, CMS 1.154
  1155.     10100 Burnet Road
  1156.     Austin, TX 78758-4497
  1157.  
  1158.     Internet:  sarah@chpc.utexas.edu
  1159.     Bitnet:    s.barron@uthermes
  1160.     Voice:     (512)471-2434
  1161.     FAX:       (512)471-2445
  1162. ---------------------------------------------------------
  1163.  
  1164. Commercial libraries
  1165. ~~~~~~~~~~~~~~~~~~~~
  1166.  
  1167. ---------------------------------------------------------
  1168. Persistence is supposed to give access to a relational database from 
  1169. a C++ object model.
  1170.  
  1171.     Persistence Software Inc
  1172.     1700 Sourth Amphlett Blvd, Suite 250
  1173.     San Mateo, Ca 94402
  1174.     415.341.7733
  1175. ---------------------------------------------------------
  1176. Matrix.h++ includes all the functionality of Math.h++.  For example:
  1177. general matrices, vectors, statistics, complex numbers, Fast Forier
  1178. Transformation (FFT's), etc.  Matrix.h++ adds specialized matrix classes
  1179. such as banded, symmetric, positive-definite, Hermitian, tridiagonal, etc.
  1180. Because Matrix.h++ includes Math.h++, it can take advantage of
  1181. Math.h++'s highly optimized low-level assembly routines, making it fast
  1182. as well as graceful.
  1183.  
  1184. Prices range from $199 to $995
  1185.  
  1186.     Rogue Wave Software, Inc., 
  1187.     1325 NW 9th Street
  1188.     Corvallis
  1189.     OR, 97330
  1190.     (503) 754-2311.
  1191. ---------------------------------------------------------
  1192. Linpack.h++ is the jewel of C++ math classes.  Linpack.h++ includes all
  1193. of Matrix.h++, plus all of the functionality in the original and well-
  1194. established Fortran version; including solutions of systems of equations
  1195. for a variety of matrix types, solutions of over- and under-determined
  1196. systems of equations, incremental least squares solvers, etc.  But,
  1197. Linpack.h++ is a tru object-oriented library, not just a C version that
  1198. compiles under C++:  the traditional messiness of the Fortran version has
  1199. been replaced with high-level, yet efficient, objects that make code far
  1200. easier to write and maintain.
  1201.  
  1202. Prices range from $299 to $1195
  1203.  
  1204.     Rogue Wave Software, Inc., 
  1205.     1325 NW 9th Street
  1206.     Corvallis
  1207.     OR, 97330
  1208.     (503) 754-2311.
  1209. ---------------------------------------------------------
  1210. Classix
  1211.  
  1212. In addition to Rogue Wave, Empathy offers a good general-purpose
  1213. library called Classix.  
  1214.  
  1215.     Empathy
  1216. ---------------------------------------------------------
  1217. USL (UNIX System Laboratories Europe Ltd.)
  1218.  
  1219. USL C++ Standard Components include :
  1220.  
  1221. Args - argc/argv command line parser.
  1222. Bits - bit manipulation to arbitrary-length bitstrings.
  1223. Blocks - dynamic arrays.
  1224. Array - efficient algorithms for searching, sorting, inserting etc.
  1225. Fsm - state machines
  1226. Graphs - maintain arbitrary relationships between arbitrary entities.
  1227. Graph Algorithms - including searching, cycle and component detection.
  1228. ipcstream - inter-process streams.
  1229. Lists - doubly-linked lists.
  1230. Maps - like arrays, except that the subscripts can be non-integral.
  1231. Objections - like UNIX software signals.
  1232. Path - facilities for manipulating UNIX path names and UNIX search paths.
  1233. Pools - optimise memory allocation.
  1234. Regex - regular expressions.
  1235. Sets - including Sets, Bags, and pointer sets.
  1236. Stopwatch - for timing critical sections of code
  1237. Strings - variable-length character strings.
  1238. Strstream - iostreams for Strings.
  1239. Symbol - efficient symbol table handling & sorting.
  1240. Time - Time, Duration (time difference) and Place (geographical location).
  1241.  
  1242. Also included are the following tools :
  1243.  
  1244. c++filt  - demangles C++ names in standard input.
  1245. dem  - demangles C++ names in an argument list.
  1246. demangle  - demangles C++ names in a.out for easier debugging.
  1247. fs  - a tool and library to help find freestore bugs.
  1248. g2++comp  - compiles G2++ record definitions.
  1249. hier  - displays the inheritance hierarchy in a program.
  1250. incl  - displays the hierarchy of include files used in a program.
  1251. publik  - displays the public interface of a class.
  1252.  
  1253.     UNIX System Laboratories, Inc.
  1254.     190 River Rd.
  1255.     Summit
  1256.     N.J, 07901
  1257.     Tel: +1 800-828-UNIX
  1258.          +1 908-522-6000
  1259.  
  1260.     UNIX System Laboratories Europe Ltd.
  1261.     International House
  1262.     Ealing Broadway
  1263.     London W5 5DB
  1264.     England
  1265.     Tel: +11-44-81-567-7711
  1266.  
  1267.     UNIX System Laboratories Pacific Ltd.
  1268.     BR Shiba 1 Bldg. 2-3-18
  1269.     Shiba Minato-ku
  1270.     Tokyo 105
  1271.     Japan
  1272.     Tel: +81-3-5484-8601
  1273. ---------------------------------------------------------
  1274. Booch Components
  1275.  
  1276. Rational markets the C++ Booch objects which are a somewhat bizarre,
  1277. but possibly quite innovative, set of library objects.
  1278.  
  1279. It appears quite complete (unless you have some specific, uncommon
  1280. needs); Booch may have an edge in supporting concurrency. USL may have
  1281. more installations and greater maturity.
  1282.  
  1283.     Rational OO products
  1284.     408-496-3700
  1285. ---------------------------------------------------------
  1286. table C++ Class Library for Graphical User Interfaces
  1287.  
  1288. StarView is a portable C++ Class Library for Graphical User Interfaces.
  1289. StarView is one of the major parts of our total Object Oriented
  1290. programming environment (we call it SOLAR system). 
  1291.  
  1292. -   portability between the operating systems MS-DOS, OS/2, Macintosh
  1293.     and different UNIX flavours
  1294. -   at  least portable between  the  GUI's MS-WINDOWS, MS-Presentation
  1295.     Manager, MacApp and OSF/Motif
  1296. -   fulfillment of the requirements of the different GUI Style
  1297.     Guide's
  1298. -   data  exchange and direct communication between the applications in
  1299.     homogeneous and heterogeneous networks (groupware approach)
  1300.  
  1301. StarView will support the following GUI's / Compilers:
  1302.  
  1303. Windows 3.x
  1304.         Borland C++
  1305.         Zortech C++
  1306.  
  1307. Presentation Manager
  1308.         Zortech C++
  1309.  
  1310. OSF Motif
  1311.         Sun C++
  1312.         Zortech C++
  1313.         Glockenspiel C++
  1314.  
  1315. Macintosh
  1316.         MPW C++
  1317.  
  1318. Author:     Andreas Meyer, STAR DIVISION
  1319.  
  1320.     STAR DIVISION GmbH
  1321.     Andreas Jahnke
  1322.     Sachsenfeld 4
  1323.     D-20097 Hamburg
  1324.     Germany
  1325.  
  1326.     Phone: ++49 40 23646 500
  1327.     Fax:   ++49 40 23646 550
  1328.     Email: svinfo@stardiv.de
  1329.  
  1330.     Star Division
  1331.     2180 Sand Hill Road, Suite 320
  1332.     Menlo Park, CA 94025
  1333.     (800) 888-8527
  1334.     (415) 233-0142 (fax)
  1335.  
  1336.     svinfo@starlab.uucp
  1337. ---------------------------------------------------------
  1338. Open Dialogue
  1339.  
  1340.     HP/Apollo
  1341. ---------------------------------------------------------
  1342. MacApp (application development toolkit)
  1343.  
  1344.     Apple
  1345. ---------------------------------------------------------
  1346. ICpak101, ICpak201
  1347.  
  1348.     Stepstone
  1349. ---------------------------------------------------------
  1350. NeXTStep (application development toolkit)
  1351.  
  1352.     NeXT
  1353. ---------------------------------------------------------
  1354. CommonView (Iconic user interface)
  1355.  
  1356.     Glockenspiel
  1357. ---------------------------------------------------------
  1358. CommonView Glockenspiel
  1359.  
  1360. This is a C++ UI library. In addition, it comes with container classes.
  1361. The down-side is that some of the features are not supported across all
  1362. platforms. 
  1363.  
  1364.     Computer Associates International
  1365.     One CA Plaza
  1366.     Islandia, NY 11788
  1367.     (516) 342-2308
  1368.     (516) 342-6947 (fax)
  1369. ---------------------------------------------------------
  1370. Galaxy
  1371.  
  1372. This is a C UI library, but it's written in an object-oriented style and
  1373. is type safe for C++ use. The package includes a WYSIWYG GUI builder. 
  1374.  
  1375. The tools are, reportedly, pretty full-featured. User-interface items
  1376. have extensive abstraction (for example, they have a confirmation-type
  1377. dialog that resolves to a push-pin and 'apply' button under openlook, but
  1378. 'ok', 'apply', 'cancel' buttons under motif). Objects can be positioned
  1379. relative to each other (rather than merely absolute position on the
  1380. screen). Also, errors are handled with an abstract exception handling
  1381. framework. They support internationalization of fonts (at least Japanese),
  1382. money, and data formatting. 
  1383.  
  1384. Some extra-cool features include memory leak detection and C-language
  1385. objects for text (multi-styled, multi-font text with embedded graphics),
  1386. list (spreadsheet-like for handling up to 2^31 x 2^31 cells with
  1387. customizable displays), and graphics processing. 
  1388.  
  1389.     Visix
  1390.     11440 Commerce Park Drive
  1391.     Reston, Virginia 22091
  1392.     (800) 832-8668
  1393.     (703) 758-2711
  1394.     galaxy@visix.com
  1395. ---------------------------------------------------------
  1396. Guild
  1397.  
  1398. This is a C-language UI library, but they're type-safe for C++
  1399. compatibility. The package includes a GUI builder and an event occurrence
  1400. monitor. 
  1401.  
  1402. Additional features in the library includes support for international
  1403. character sets, portable file system support and nifty C-language classes
  1404. for pie-charts, 3d bars, x-y plots, and the like. 
  1405.  
  1406. OPTIONS:
  1407.     Graphic Modeling        $995
  1408.     Oracle Database Bridge  $395
  1409.     ODBC Database Access    $495
  1410.  
  1411.     Guild
  1412.     1710 S. Amphlett
  1413.     2nd Fl.
  1414.     San Mateo, California 94402
  1415.     (415) 513-6650
  1416.     (415) 349-4908 (fax)
  1417. ---------------------------------------------------------
  1418. MainWin
  1419.  
  1420.     Machine Independent Software
  1421. ---------------------------------------------------------
  1422. ObjectViews
  1423.  
  1424. I believe this is a commercial version of InterViews.
  1425.  
  1426.     Quest Windows
  1427. ---------------------------------------------------------
  1428. Open Interface Version 3.0
  1429.  
  1430. This is a C-based UI library, but type-safe for C++ compatibility. The
  1431. software also comes with a WYSIWYG GUI builder. 
  1432.  
  1433. They include tons of extra widgets like business graphics (bar, pie, and
  1434. line charts), images (all standard formats), and hypertext help. 
  1435.  
  1436. Other software in Open Interface includes international character support,
  1437. multi-font support, full printer support, memory management, file I/O
  1438. support as well as Windows DDE support (the latter is, of course, non-
  1439. portable). 
  1440.  
  1441. They also have a product called Nexpertobject, which is an expert systems
  1442. tool intended for GUI development. 
  1443.  
  1444.     Neuron Data
  1445.     156 University Avenue,
  1446.     Palo Alto, California 94301
  1447.     (800) 876-4900
  1448.     (415) 321-4488
  1449. ---------------------------------------------------------
  1450. Wind/U
  1451.  
  1452.     Bristol Software
  1453. ---------------------------------------------------------
  1454. WNDX
  1455.  
  1456.     WNDX
  1457.     1550 8th Street S.W. Suite 305
  1458.     Calgary, Alberta Canada T2R 1K1
  1459.     (403) 244-0995
  1460. ---------------------------------------------------------
  1461. XVT Portability Toolkit
  1462.  
  1463. This is a C-language library of functions (although, you can pay extra
  1464. for C++). They have a WYSIWYG GUI builder, but they charge for that, too.
  1465.  
  1466.  
  1467. OPTIONS:
  1468.     C++ capability                      $200
  1469.     XVT-Design (a WYSIWYG GUI builder)  $1200 ($2900 for non-PC UNIX)
  1470.     Source Code                         (call)
  1471.  
  1472.     XVT Software Incorporated
  1473.     4900 Pearl East Circle
  1474.     Box 18750
  1475.     Boulder, CO 80308
  1476.     (800) 678-7988
  1477.     (303) 443-4223 (phone)
  1478.     (303) 443-0969 (fax)
  1479.  
  1480.     info@xvt.com
  1481. ---------------------------------------------------------
  1482. zApp V2.0
  1483.  
  1484. This is a full C++ class library.
  1485.  
  1486. This product contains 200 classes to provide things like DDE support (non-
  1487. portable), printer support, logical positioning (top, bottom, etc) of
  1488. window items, and true-type font support. Included in their package is 75
  1489. pre-defined forms (as well as the usual examples). 
  1490.  
  1491. The software comes with zApp Programmer's Guide (330 pages) and zApp
  1492. Programmer's Reference (890 pages). 
  1493.  
  1494. OPTIONS:
  1495.     Object/Designer $499 (is this a GUI builder?)
  1496.  
  1497.     Inmark
  1498.     2065 Landings Drive,
  1499.     Mountainview, CA 94043
  1500.     (800) 3-inmark
  1501.     (415) 691-9000
  1502.     (415) 691-9099 (fax)
  1503.  
  1504.     sales@inmark.com
  1505. ---------------------------------------------------------
  1506. Zinc V3.5
  1507.  
  1508. This is a full C++ class library that comes with the Zinc Designer (a
  1509. WYSIWYG GUI builder). Their classes include some graphic capabilities, a
  1510. rather nice error system, and a portable, if rudimentary, help system.
  1511. Also included is the source for the library (and for the Designer!). 
  1512.  
  1513. In addition to the usual GUI stuff, Zinc also provides international
  1514. character support (an extended version, for extra bux, is in the works),
  1515. some container classes, and filesystem portability. They also allow you
  1516. to incorporate platform-specific stuff (e.g., system messages) into their
  1517. API; but, of course, you're on your own when it comes to porting any
  1518. additions. 
  1519.  
  1520.  
  1521.     ZINC Software Incorporated
  1522.     405 South 100 East 2nd Floor
  1523.     Pleasant Grove, UT 84062
  1524.     (800) 638 8665
  1525.     (801) 785-8900
  1526.     (801) 785-8996 (fax)
  1527.     (801) 785-8997 (bbs)
  1528.  
  1529.     tech@zinc.com
  1530. ---------------------------------------------------------
  1531. Software Transformation has a cross-platform product which was designed
  1532. from the ground up for commercial ISVs, not just MIS shops, and the
  1533. technology is supposed to blow away XVT. 
  1534.  
  1535.     Software Transformation
  1536. ---------------------------------------------------------
  1537. OpenUI is another GUI builder
  1538.  
  1539. This interface supports C, Pascal, and (ish) COBOL.
  1540.  
  1541.     Open Software Associates
  1542.     P.O. Box 3599
  1543.     Sunnyvale, CA 94088-3599
  1544.     (408) 730-2626
  1545. ---------------------------------------------------------
  1546. NetClasses++, C++ classes for message passing environments:
  1547.  
  1548. NetClasses is a set of C++ class libraries that is organized as an object-
  1549. oriented software toolkit for distributed, message-passing based
  1550. programming. 
  1551.  
  1552. Facilities include :
  1553.  
  1554. Transporting objects over a network. NetClasses can transport: Arbitrary
  1555. C++ objects derived from PostModern's TransObject class, arbitrary NIH-
  1556. derived objects, and NetClasses Typed Objects. 
  1557.  
  1558. NetClasses Typed Objects provide an object-oriented data transport in
  1559. which the structure and organization of objects is specified externally
  1560. in configurable files using a simple, programming language independent
  1561. abstract syntax notation, the NetClasses Abstract Syntax Notation (NASN).
  1562.  
  1563. Remote method invocations (RMI). Using RMI, an application on machine B
  1564. can invoke a method on machine A. RMI makes fault tolerance and
  1565. connection management transparent to the application programmer. The RMI
  1566. layer is built on top of the distributed services package that is
  1567. described below. 
  1568.  
  1569. Reading and writeing all three varieties of NetClasses-transportable
  1570. objects on streams using machine-independent external representations. 
  1571.  
  1572. Currently available on Sun SPARC; currently testing on HP workstations.
  1573.  
  1574. NetClasses Development License          $1995
  1575. NetClasses Runtime License               $495
  1576. NetClasses Source Code License          $7995
  1577. (includes 3 runtime licenses)
  1578. NetClasses training class               $2000
  1579. NetClasses consulting and porting services (ask for quote)
  1580.  
  1581.     Qualix Group
  1582.     1900 S. Norfolk St. Suite 224
  1583.     San Mateo, CA 94403
  1584.     info@qualix.com
  1585.     1-800-245-UNIX (voice)
  1586.     (415) 572-1300 (fax)
  1587.     (415) 572-0200 (voice)
  1588. ---------------------------------------------------------
  1589. Aspect
  1590.  
  1591. This is a C library, though they're type safe for C++ compatibility. A
  1592. GUI builder is provided with the library. They're coming out with a C++
  1593. class library soon. 
  1594.  
  1595.     OPEN Inc.
  1596.     655 Southpointe Court, Suite 200
  1597.     Colorado Springs, CO 80906
  1598.     (719)527-9700 (sales, customer service, tech support)
  1599.     (719)576-3835 (fax)
  1600. ---------------------------------------------------------
  1601. C++/Views
  1602.  
  1603. This is a C++ library based on the smalltalk model (all classes come from
  1604. one superclass, and they have a smalltalk-like class browser). They do
  1605. not have a WYSIWYG GUI builder. 
  1606.  
  1607. Additional features include various container classes.
  1608.  
  1609.     Liant Software Corp.
  1610.     959 Concord St.,
  1611.     Framingham, MA 01701 USA
  1612.     (800) 237-1873
  1613.     (508) 875-2246.
  1614.     support@lpi.liant.com
  1615. ---------------------------------------------------------
  1616. Presentation Services Manager UI library
  1617.  
  1618. No WYSIWYG GUI builder exists, but they do include a script language. 
  1619.  
  1620.     Lancorp Pty Ltd
  1621.     33 Nott St
  1622.     Port Melbourne 3207
  1623.     Australia
  1624.     +61 3 646 7100 (phone)
  1625.     +61 3 646 8610 (fax)
  1626. ---------------------------------------------------------
  1627. ILOG RULES is a high performance embeddable rule-based inference
  1628. engine. It is a forward chaining tool, written in C++ (hence it is
  1629. object-oriented and supports inheritance mechanisms) and is also
  1630. provided as a C++ library. 
  1631.  
  1632. It runs virtually on any Unix platform (e.g., HP97X0, Sun4, RS/6000,
  1633. DecStations) as well as on PCs running DOS (with or without MS/Windows)
  1634. or OS/2. 
  1635.  
  1636. It extends OPS/5 with nested premises (objects as values), rule packets
  1637. (logical grouping of rules), a full Truth Maintenance System (TMS) for
  1638. efficient non-monotonic reasoning, compilation of rules into C/C++ code,
  1639. and an object oriented data-model in C++. ILOG RULES work directly on
  1640. user objects, so interfacing is straightforward. C/C++ code may be
  1641. included in rule conditions and actions. ILOG RULES is based on the fast
  1642. XRETE implementation of the RETE algorithm developed by Thomson-CSF. 
  1643.  
  1644.     ILOG, Inc., 
  1645.     2073 Landings Drive, 
  1646.     Mountain View, 
  1647.     CA 94043, 
  1648.     tel 415-390-9000, 
  1649.     fax 415-390-0946, 
  1650.     e-mail info@ilog.com.  
  1651.  
  1652. European customers should contact 
  1653.     ILOG SA, 
  1654.     2, av. Gallieni, 
  1655.     BP 85, 
  1656.     94253 Gentilly CEDEX, 
  1657.     France, 
  1658.     tel +33 (1) 46-63-66-66, 
  1659.     fax +33 (1) 46-63-15-82, 
  1660.     e-mail info@ilog.fr.
  1661. ---------------------------------------------------------
  1662. ImageSoft's Object/Engineering C++ class library supports simulation.
  1663.  
  1664. The library provides a natural approach to solving discrete-event
  1665. simulation problems. Modularity is reinforced by implementing the
  1666. process objects as concurrent tasks. Support is provided for dynamic
  1667. systems; transaction operators; transaction messages; as well as
  1668. queuing network thread with polymorphic scheduler (timer for
  1669. discrete-event simulation; tracer for simulation run; processes
  1670. in discrete-event simulation with services delay;
  1671. conventional/unconditional blocking, pre-emption, etc.;
  1672. shared queues/links in network with LIFO, FIFO & arbitrary
  1673. queuing discipline; producing node and source; consuming node
  1674. and sink; generic queuing network nodes and servers.
  1675.  
  1676. And full source code is provided together with extensive
  1677. documentation, examples and tutorial. There are also an
  1678. enourmous number of other class libraries included with
  1679. source that are of interest to the scientific and engineering community.
  1680.  
  1681.     ImageSoft Inc.
  1682.     2 Haven Avenue
  1683.     Port Washington, NY 11050
  1684.     (516) 767-2233
  1685.     (516) 767-9067 (Fax)
  1686.     (516) 767-9074 (BBS)
  1687.     email: mcdhup!image!object
  1688. ---------------------------------------------------------
  1689. POET : Object Oriented Database
  1690.  
  1691. POET runs on the SPARC, NeXT, DOS, MS-Windows, Novell, OS/2, and
  1692. Macintosh. Other ports are in the works. Pricing starts at about $500. 00
  1693. for the DOS version, to a little over $1000.00 for the Unix versions. 
  1694.  
  1695.     BKS Software
  1696.     One Kendall Square
  1697.     Suite 2200
  1698.     Cambridge, MA 02139
  1699.     Phone: 617 / 621 7047
  1700.     Fax:   617 / 621 7097
  1701.  
  1702. In Germany : BKS Software
  1703.              Guerickestr. 27 
  1704.              1000 Berlin 10
  1705.              Germany
  1706.              Phone: +49 30 / 342 3066
  1707.              Fax:   +49 30 / 342 8413
  1708.  
  1709.     BKS Software
  1710.     4633 Old Ironsides Drive
  1711.     Suite 110
  1712.     Santa Clara, CA 95054
  1713.     Tel:    408 / 748 - 3403
  1714.     Fax:    408 / 748 - 9060
  1715.  
  1716. European Office:
  1717.     BKS Software
  1718.     Fo_redder 12
  1719.     2000 Hamburg 67
  1720.     Germany
  1721.     Tel:    +49 40 / 60 99 011
  1722.     Fax:    +49 40 / 60 39 851
  1723.     Internet: poet@bks.de
  1724.  
  1725. UK Office:
  1726.     Silicon River, Ltd.
  1727.     106-108 Powis Street
  1728.     London, SE18 6LU
  1729.     England
  1730.     Tel:    +44 81 / 317 7777
  1731.     Fax:    +44 81 / 316 7778
  1732.     BBS:    +44 81 / 317 2310
  1733.     Internet:  acourt@cix.compulink.co.uk
  1734. ---------------------------------------------------------
  1735. ORION/ITASCA - Object Oriented Database
  1736.  
  1737.     Itasca Systems, Inc.  
  1738.     2850 Metro Drive
  1739.     Suite 300
  1740.     Minneapolis, MN  55425
  1741.     Tel: 612-851-3158
  1742.     Fax: 612 851 3157
  1743.  
  1744. A slightly different address from another poster ...
  1745.  
  1746.     Itasca Systems, Inc.
  1747.     7850 Metro Parkway
  1748.     Minneapolis, Minn 55425 
  1749.     Tel: (612) 851-3155
  1750.     Technical Contact : Doug Barry (doug@itasc.com)
  1751. ---------------------------------------------------------
  1752. OS Object Oriented Database
  1753.  
  1754.     O2 technology
  1755.     Suite 2200
  1756.     1 Kendall Square
  1757.     Cambridge MA 02139
  1758.     U.S.A.
  1759.     Tel: +1 617 621 7041
  1760.     Fax: +1 617 577 1209
  1761.  
  1762. France : 
  1763.     O2 Technology
  1764.     7, Rue du Parc de Clagny
  1765.     78035 Versailles Cedex
  1766.     France
  1767.     Tel: +33 1 30 84 77 91
  1768.     Fax: +33 1 30 84 77 90
  1769.     Email: o2@o2tech.fr
  1770.     Contact: Didier Plateau
  1771.     Email: didier@o2tech.fr
  1772. ---------------------------------------------------------
  1773. G-BASE/GTX (MATISSE) Object Oriented Database
  1774.  
  1775.     ODB, an Intellitic Intl Co.
  1776.     238 Broadway
  1777.     Cambridge, MA 02139
  1778.     phone:     (617) 354-4220
  1779.     fax:    (617) 547-5420
  1780.     e-mail: info@odb.com
  1781.     Contact: Christina Bernard, Marketing and Communications
  1782. ---------------------------------------------------------
  1783. OBJECTSTORE Object Oriented Database
  1784.  
  1785. email address for their distributor in France: bchavonnet@elsa.fr
  1786.  
  1787.     Object Design
  1788.     Main office              California address
  1789.     One New England Executive Park     101 El Camino Real, Suite 300
  1790.     Burlington, MA  01803         Menlo Park, CA 94025
  1791.     Tel: 617-270-9797              (415) 327 - 5191
  1792.     Fax: 617-270-3509
  1793.  
  1794. UK Office:
  1795.     Object Design (UK) Ltd.
  1796.     604 Delta Business Park
  1797.     Welton Road
  1798.     Swindon
  1799.     Wiltshire SN5 7XP
  1800.     44-793-486111
  1801.     44-793-491177 (fax)
  1802. ---------------------------------------------------------
  1803. Objectivity/DB Object Oriented Database
  1804.  
  1805. Objectivity/DB runs on the SPARC, as well as all sun platforms, all dec
  1806. platorms (and operating systems), hp 9000 series (68k and risc), ibm risc,
  1807. sgi, and some others, all in a mixed fully distributed and heterogeneous
  1808. environment.
  1809.  
  1810. Objectivity Inc.
  1811.     West coast                      East coast
  1812.     800 El Camino Real        67 South Bedford Street
  1813.     Fourth Floor            Suite 400W
  1814.     Menlo Park, CA  94025        Burlington, MA 01803
  1815.     Tel: 415-688-8000        Tel: 617 229 5817
  1816.     Fax: 415-325-0939        Fax: 617 272 0558
  1817.  
  1818.     11050 Strathmore Dr., #316/300B
  1819.     Los Angeles, CA  90024
  1820.     (310) 208-6117
  1821.     (310) 208-5677 fax
  1822.  
  1823.     email: info@objy.com
  1824.     .com)
  1825.  
  1826. For Germany:
  1827.     Dr. Matthias Frei
  1828.     Micram Microelectronic GmbH & Co. KG
  1829.     Universitatsstrabe 142
  1830.     4630  Bochum
  1831.     Germany
  1832.     ph:    +49  234  97 08-304
  1833.     fax:    +49  234  97 08-301
  1834.     e-mail:    frei@micram.de
  1835.  
  1836. For Sweden, Norway, Finland and Denmark:
  1837.     Mr. Kjell Hegerin
  1838.     Norsys Technology AB
  1839.     Finlandsgatan 12
  1840.     Box 1239
  1841.     S-164 28 Kista
  1842.     Sweden
  1843.     phone:    +46 8 750 75 75
  1844.     fax:    +46 8 703 92 72
  1845.  
  1846. For The United Kingdom:
  1847.  
  1848.     Valbecc Object Technology Ltd.
  1849.     115 Wilmslow Road
  1850.     Handforth, Wilmslow
  1851.     Cheshire  SK9 3ER
  1852.     United Kingdom
  1853.     contact:    Fred Peel
  1854.     ph:    +44  625  539903
  1855.     fax:    +44  625  539905
  1856. ---------------------------------------------------------
  1857. ONTOS Object Oriented Database
  1858.  
  1859.     Ontologic, Inc.
  1860.     Three Burlington Woods
  1861.     Burlington, MA  01803
  1862.     Tel: 617-272-7110
  1863.     Fax: 617-272-8101 
  1864.  
  1865. UK distributor:
  1866.     VALBECC SOFTWARE
  1867.     Mr. Fred Peel
  1868.     115 Wilmslow Road
  1869.     Handforth,
  1870.     Wilmslow, SK9 3ER 
  1871.     U.K.
  1872.     tel +44 625 539 903
  1873.     fax +44 625 539 905
  1874. ---------------------------------------------------------
  1875. KALA Object Oriented Database
  1876.  
  1877. Kala(tm) is a Persistent Data Server managing distributed, shared,
  1878. arbitrarily complex and evolving persistent data. Kala is highly
  1879. efficient and secure. Kala manages the visibility of persistent data
  1880. elements to its clients, thus supporting any types of transactions,
  1881. versions, access control, security, configurations. Kala does not
  1882. restrict you to any particular model. Kala provides the mechanism, but
  1883. imposes no policy.
  1884.  
  1885. o Kala is available now on Sun platforms (SunOS / 68K & SPARC). A
  1886.   80x86/DOS version is now available to alpha and early beta sites.
  1887.   Ports to Windows and MacOS are also likely in the near future. Any
  1888.   port is possible as NRE.
  1889. o Kala's interface is ANSI C, also callable from C++.
  1890.  
  1891.     Penobscot Development Corporation
  1892.     50 Princeton Road
  1893.     Arlington, MA 02174-8253
  1894.     USA
  1895.     Tel: +1-617-646-7935
  1896.     Fax: +1-617-646-5753
  1897.     Contact: Sergiu S. Simmel
  1898.     Email: sss@world.std.com 
  1899.     Information: kala-request@world.std.com
  1900. ---------------------------------------------------------
  1901. IDB Object Databases
  1902.  
  1903.     Persistent Data Systems
  1904.     P.O. box 38415
  1905.     Pittsburgh, PA 15238-9929
  1906.     Tel: 412-963-1846
  1907.     Fax: 412-963-1843
  1908. ---------------------------------------------------------
  1909. GEMSTONE Object Oriented Database
  1910.  
  1911. Briefly, GemStone is a full featured OODBMS with transaction control,
  1912. multiple users, multiple platforms supported, client server architecture,
  1913. active objects (ie, behavior can occur in the database as well as in the 
  1914. application using it), multiple language support, etc.
  1915.  
  1916. GemStone is actually quite a bit more than just a data repository - it is a
  1917. full-fledged DBMS that is pure OO. You can access the same database just as
  1918. easily from C, C++, or SmallTalk, or you can build entire database
  1919. applications inside the database server, because it is an active server
  1920. that runs methods written in our DML, OPAL, which is a dialect of
  1921. SmallTalk. There are also high-level tools to aid application building.
  1922.  
  1923.     Servio Corporation
  1924.     950 Marina Village Parkway
  1925.     Suite 110
  1926.     Alameda CA 94501
  1927.     Tel: 510-814-6200
  1928.     Tel: 800-243-9369
  1929.     Fax: 510-814-6227
  1930.     Contact : marcs@slc.com
  1931.  
  1932. UK Office:
  1933.     Servio-UK Ltd
  1934.     Criterion House
  1935.     Beauchamp Court
  1936.     Victors Way
  1937.     Barnet
  1938.     EN5 5TZ
  1939.     England
  1940.     Tel: (81) 447-0800
  1941. ---------------------------------------------------------
  1942. VERSANT Object Oriented Database
  1943.  
  1944. Versant markets a full-function OODBMS together with associated DBA and
  1945. application developer tools. Versant is currently available on Sun-3, Sun-4, 
  1946. IBM RS/6000, HP 9000/400,700, DEC Ultrix, SGI, NCR, NeXT and Sequent platforms. 
  1947. An OS/2 port has just been released. Other platforms will be announced soon.
  1948. A Windows/NT port is in progress.
  1949.  
  1950. Interfaces to 'C', 'C++' and Smalltalk-80 are supported.
  1951.  
  1952.     Versant Object Technology
  1953.     4500 Bohannon Drive
  1954.     Suite 200
  1955.     Menlo Park, CA  94025
  1956.     Attn: Mike Mooney
  1957.     Tel: 1-800-VERSANT
  1958.     Tel: (415) 329-7500
  1959.     Fax: (415) 325-2380
  1960.     Tel: 415-325-2300
  1961.     Fax: 415-325-2380
  1962.     Contact: Mary Foussourier
  1963.     Email:info@versant.com, 
  1964.     Email:info@osc.com
  1965.     Email:aflynn@osc.com
  1966.  
  1967. European Office:
  1968.     Versant Europe
  1969.     Siriusdreet 2
  1970.     P.O. Box 333
  1971.     2130 All Hoofddrop
  1972.     The Netherlands
  1973.     Tel: (31) 2503-66373
  1974.     Tel: +31 - (0)2503 - 66851
  1975.     Fax: +31 - (0)2503 - 66855
  1976.  
  1977. UK Distributor:
  1978.     Admiral Software Ltd
  1979.     Admiral House
  1980.     193-199 London Road
  1981.     CAMBERLEY
  1982.     Surrey GU15 3JT.
  1983.     Tel: 0276 692269
  1984.     Contact: Kevin Adams
  1985.     Contact: Clive Harris
  1986. ---------------------------------------------------------
  1987. M++
  1988.  
  1989. M++ isn't as well known as the RogueWave math.h++ libraries, but it has
  1990. been around longer. It has a number of features that distinguish it from
  1991. the RogueWave classes, notably improved handling of temporaries. 
  1992.  
  1993. M++ was explicitly designed to provide the functionality of an array
  1994. language like Matlab or Gauss and it contains the Linpack, Eispack stuff
  1995. found in RogueWave's Linpack.h++. 
  1996.  
  1997. Dyad Software, also sell modules written in M++ for doing statistical
  1998. work, including linear and nonlinear least squares estimation, as well as
  1999. optimization, numerical integration, and differential equations. 
  2000.  
  2001.     Dyad Software
  2002.     6947 Coal Creek Pkwy, Suite 361
  2003.     Renton, WA 98059-3159
  2004.     206-637-9426 (voice)
  2005.     206-637-9428 (fax)
  2006.     206-271-9486 (bbs)
  2007. ---------------------------------------------------------
  2008. Financial and other class libraries
  2009.  
  2010. I have no product details at present)
  2011.  
  2012.     Greenleaf Software, Inc.
  2013.     16479 Dallas Parkway, Suite 570
  2014.     Dallas, 
  2015.     Texas 75248
  2016. ---------------------------------------------------------
  2017.  
  2018.  
  2019. Other Commercial sources of C++ code
  2020. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2021. Checkout the ISCL CD ROM from ImageSoft, it contains the largest
  2022. collection of C++ source code ever compiled in one place. It's available
  2023. from ImageSoft ... 
  2024.  
  2025.     ImageSoft Inc.
  2026.     2 Haven Avenue
  2027.     Port Washington, NY 11050
  2028.     (516) 767-2233
  2029.     (516) 767-9067 (fax)
  2030.     (516) 767-9074 (bbs)
  2031.     email: mcdhup!image!iscl
  2032. ---------------------------------------------------------
  2033. This is not a code CD but it has many libraries & some code (all msdos)
  2034. brought together into a CD. 
  2035.  
  2036.     EMS Professional Software, Specialized Software Libraries
  2037.     Baker Enterprises
  2038.     20 Ferro Drive
  2039.     Sewell, NJ 08080
  2040.     Fax: 609-582-9204
  2041.     Internet: rbakerpc@aol.com
  2042. ---------------------------------------------------------
  2043.  
  2044. Other places to look for details of C++ libraries
  2045. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2046. comp.windows.misc portable-GUI-software FAQ
  2047. ---------------------------------------------------------
  2048. ftp.th-darmstadt.de /pub/programming/languages/C++/c++-products/*
  2049. ---------------------------------------------------------
  2050. ASSET is currently populating a national directory of reusable
  2051. software assets, the National Software Reuse Directory (NSRD).  The
  2052. concept is to provide a type of 'card catalogue' containing descriptions
  2053. of reusable software work products and services.
  2054.  
  2055. For more information on supplying listings for the NSRD, please
  2056. contact or send information to:
  2057.  
  2058.     National Software Reuse Directory
  2059.     c/o ASSET
  2060.     2611 Cranberry Square
  2061.     Morgantown, WV 26505
  2062.     email: nsrd@source.asset.com
  2063.     voice: (304) 594-9827
  2064.  
  2065. For more information on obtaining an ASSET account and accessing the
  2066. NSRD, please contact:
  2067.  
  2068.     ASSET Account Manager
  2069.     2611 Cranberry Square
  2070.     Morgantown, WV 26505
  2071.     email: info@source.asset.com
  2072.     voice: (304) 594-1762
  2073. ---------------------------------------------------------
  2074.  
  2075. -- 
  2076. Nikki Locke,Trumphurst Ltd.(PC and Unix consultancy) nikki@trmphrst.demon.co.uk
  2077. trmphrst.demon.co.uk is NOT affiliated with ANY other sites at demon.co.uk.
  2078.