~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to src/kernel/io/dolfin/OctaveFile.h

  • Committer: Johannes Ring
  • Date: 2008-03-05 22:43:06 UTC
  • Revision ID: johannr@simula.no-20080305224306-2npsdyhfdpl2esji
The BIG commit!

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
// Copyright (C) 2003-2006 Johan Hoffman and Anders Logg.
2
 
// Licensed under the GNU LGPL Version 2.1.
3
 
//
4
 
// First added:  2003-07-15
5
 
// Last changed: 2005-05-07
6
 
 
7
 
#ifndef __OCTAVE_FILE_H
8
 
#define __OCTAVE_FILE_H
9
 
 
10
 
#include <dolfin/constants.h>
11
 
#include <dolfin/Matrix.h>
12
 
#include <dolfin/MFile.h>
13
 
 
14
 
namespace dolfin
15
 
{
16
 
 
17
 
  class OctaveFile : public MFile
18
 
  {
19
 
  public:
20
 
    
21
 
    OctaveFile(const std::string filename);
22
 
    ~OctaveFile();
23
 
 
24
 
    // Input
25
 
    
26
 
    // Output
27
 
    
28
 
    void operator<< (Matrix& A);
29
 
    
30
 
  };
31
 
  
32
 
}
33
 
 
34
 
#endif