eccodes/src/action_class_put.cc

20 lines
717 B
C++
Raw Normal View History

2013-03-25 12:04:10 +00:00
/*
2020-01-28 14:32:34 +00:00
* (C) Copyright 2005- ECMWF.
2013-03-25 12:04:10 +00:00
*
* This software is licensed under the terms of the Apache Licence Version 2.0
* which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
*
* In applying this licence, ECMWF does not waive the privileges and immunities granted to it by
* virtue of its status as an intergovernmental organisation nor does it submit to any jurisdiction.
*/
#include "grib_api_internal.h"
2024-01-10 13:18:20 +00:00
// No longer used: For the original intent see
// src/deprecated/action_class_put.cc
2020-01-22 13:10:59 +00:00
grib_action* grib_action_create_put(grib_context* context, const char* name, grib_arguments* args)
2013-03-25 12:04:10 +00:00
{
2024-01-10 13:18:20 +00:00
grib_context_log(context, GRIB_LOG_ERROR, "The 'export' statement is deprecated");
2024-01-10 12:43:12 +00:00
return NULL;
2013-03-25 12:04:10 +00:00
}