mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
48 lines
1.7 KiB
C
48 lines
1.7 KiB
C
|
/*
|
||
|
Copyright (C) 2011 Statoil ASA, Norway.
|
||
|
|
||
|
The file 'template.h' is part of ERT - Ensemble based Reservoir Tool.
|
||
|
|
||
|
ERT is free software: you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation, either version 3 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
ERT is distributed in the hope that it will be useful, but WITHOUT ANY
|
||
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
|
||
|
See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
||
|
for more details.
|
||
|
*/
|
||
|
|
||
|
#ifndef __TEMPLATE_H__
|
||
|
#define __TEMPLATE_H__
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
#include <subst_list.h>
|
||
|
|
||
|
typedef struct template_struct template_type;
|
||
|
|
||
|
|
||
|
template_type * template_alloc( const char * template_file , bool internalize_template, subst_list_type * parent_subst);
|
||
|
void template_free( template_type * template );
|
||
|
void template_instansiate( const template_type * template , const char * __target_file , const subst_list_type * arg_list , bool override_symlink);
|
||
|
void template_add_arg( template_type * template , const char * key , const char * value );
|
||
|
|
||
|
void template_clear_args( template_type * template );
|
||
|
int template_add_args_from_string( template_type * template , const char * arg_string);
|
||
|
char * template_get_args_as_string( template_type * template );
|
||
|
void template_set_template_file( template_type * template , const char * template_file);
|
||
|
const char * template_get_template_file( const template_type * template );
|
||
|
|
||
|
|
||
|
#endif
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|