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

« back to all changes in this revision

Viewing changes to doc/examples/dump.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
#include <blitz/array.h>
 
2
 
 
3
using namespace blitz;
 
4
 
 
5
int main()
 
6
{
 
7
    Array<float,4> A(3,7,8,2,FortranArray<4>());
 
8
    A.dumpStructureInformation(cerr);
 
9
    return 0;
 
10
}
 
11