Migration from SVN

This commit is contained in:
quemy 2012-08-30 11:30:11 +02:00
commit 8cd56f37db
29069 changed files with 0 additions and 4096888 deletions

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

@ -0,0 +1,14 @@
#include <eo>
typedef EO<float> Chrom;
int main()
{
Chrom chrom1, chrom2;
// EO objects can be printed with stream operators
std::cout << "chrom1 = " << chrom1 << std::endl
<< "chrom2 = " << chrom2 << std::endl;
return 0;
}