~ubuntu-branches/ubuntu/raring/blitz++/raring

« back to all changes in this revision

Viewing changes to examples/io.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Konstantinos Margaritis
  • Date: 2005-02-28 20:25:01 UTC
  • mfrom: (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050228202501-3i4f2sknnprsqfhz
Tags: 1:0.8-4
Added missing build-depends (Closes: #297323)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include <blitz/array.h>
2
 
#include <fstream.h>
 
2
#ifdef BZ_HAVE_STD
 
3
        #include <fstream>
 
4
#else
 
5
        #include <fstream.h>
 
6
#endif
3
7
 
4
8
BZ_USING_NAMESPACE(blitz)
5
9