~ubuntu-branches/ubuntu/trusty/dune-grid/trusty

« back to all changes in this revision

Viewing changes to src/gmsh-to-alu/alucube-3d.cc

  • Committer: Package Import Robot
  • Author(s): Ansgar Burchardt
  • Date: 2012-04-06 11:31:20 UTC
  • Revision ID: package-import@ubuntu.com-20120406113120-x0z4e0qqgfhmaj2a
Tags: upstream-2.2~svn7982
ImportĀ upstreamĀ versionĀ 2.2~svn7982

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 
2
// vi: set et ts=8 sw=2 sts=2:
 
3
 
 
4
#ifdef HAVE_CONFIG_H
 
5
#include "config.h"
 
6
#endif
 
7
 
 
8
#include <string>
 
9
 
 
10
#include <dune/grid/alugrid.hh>
 
11
 
 
12
const std::string programName = "dune-gmsh-to-alucube-3d";
 
13
typedef Dune::ALUCubeGrid<3, 3> Grid;
 
14
 
 
15
#include "main.hh"