OpenFCST: The open-source Fuel Cell Simulation Toolbox
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
base.h
Go to the documentation of this file.
1 // ------------------------------------------------------------------
2 // $Id: base.h 1348 2013-08-16 00:45:07Z secanell $
3 //
4 // Copyright (C) 2006, 2007, 2008, 2009 by Guido Kanschat.
5 // Copyright (C) 2012 by Valentin N. Zingan, University of Alberta.
6 //
7 // This file is subject to QPL and may not be distributed
8 // without copyright and license information. Please refer
9 // to the file deal.II/doc/license.html for the text and
10 // further information on this license.
11 // ------------------------------------------------------------------
12 
13 #ifndef _DEALII_APPFRAME_BASE_H_
14 #define _DEALII_APPFRAME_BASE_H_
15 
16 #include <appframe/fe_vectors.h>
18 #include <appframe/event.h>
21 
22 using namespace dealii;
23 
55 namespace AppFrame
56 {
57 
72  extern void open_logfile(const std::string& filename = std::string(""));
73 
79  extern void declare_parameter_files(ParameterHandler& param);
80 
93  extern void read_parameter_files(ParameterHandler& param,
94  const std::string& filename = std::string(""));
95 
103  extern void initialize(int argc,
104  char** argv);
105 
110  extern int argc;
111 
116  extern char** argv;
117 
118 }
119 
120 #endif