1 |
|
2 |
/******************************************************* |
3 |
* |
4 |
* Copyright (c) 2003-2009 by University of Queensland |
5 |
* Earth Systems Science Computational Center (ESSCC) |
6 |
* http://www.uq.edu.au/esscc |
7 |
* |
8 |
* Primary Business: Queensland, Australia |
9 |
* Licensed under the Open Software License version 3.0 |
10 |
* http://www.opensource.org/licenses/osl-3.0.php |
11 |
* |
12 |
*******************************************************/ |
13 |
|
14 |
#ifndef __FILESAVERS_H__ |
15 |
#define __FILESAVERS_H__ |
16 |
|
17 |
#include <escript/AbstractDomain.h> |
18 |
|
19 |
#include <boost/python/dict.hpp> |
20 |
#include <string> |
21 |
|
22 |
namespace escriptexport { |
23 |
|
24 |
void saveSilo(const std::string& filename, int cycle, double time, |
25 |
escript::Domain_ptr domain, |
26 |
const boost::python::dict& datavars); |
27 |
|
28 |
} // namespace escriptexport |
29 |
|
30 |
#endif // __FILESAVERS_H__ |
31 |
|