~njansson/dolfin/hpc

« back to all changes in this revision

Viewing changes to src/modules/template/ProblemTemplate.hh

  • Committer: logg
  • Date: 2002-09-13 12:55:37 UTC
  • Revision ID: devnull@localhost-20020913125537-gz6ry1id9xsvu6np
Tailorized "2002-09-13 07:55:37 by logg"
Initial revision

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Copyright (C) 2002 [Insert name]
 
2
// Licensed under the GNU GPL Version 2.
 
3
 
 
4
#ifndef __PROBLEM_TEMPLATE_HH
 
5
#define __PROBLEM_TEMPLATE_HH
 
6
 
 
7
#include <Problem.hh>
 
8
 
 
9
class ProblemTemplate : public Problem {
 
10
public:
 
11
 
 
12
  ProblemTemplate(Grid *grid) : Problem(grid) {}
 
13
  ~ProblemTemplate(){}
 
14
 
 
15
  const char *Description();
 
16
  void Solve();
 
17
    
 
18
};
 
19
 
 
20
#endif