adding examples for eoBin & other stuff

This commit is contained in:
gustavo 1999-09-10 12:03:51 +00:00
commit 0f4ff4691c
10 changed files with 1306 additions and 0 deletions

21
eo/test/t-eo.cpp Normal file
View file

@ -0,0 +1,21 @@
//-----------------------------------------------------------------------------
// t-eo.cpp
//-----------------------------------------------------------------------------
#include <eo> // EO
//-----------------------------------------------------------------------------
typedef EO<float> Chrom;
//-----------------------------------------------------------------------------
main()
{
Chrom chrom1, chrom2;
cout << "chrom1 = " << chrom1 << endl
<< "chrom2 = " << chrom2 << endl;
}
//-----------------------------------------------------------------------------