source: XIOS/dev/branch_openmp/src/interface/c/icreorder_domain.cpp @ 1545

Last change on this file since 1545 was 1545, checked in by yushan, 6 years ago

branch_openmp merged with trunk r1544

File size: 1.4 KB
Line 
1/* ************************************************************************** *
2 *      Copyright © IPSL/LSCE, xios, Avril 2010 - Octobre 2011         *
3 * ************************************************************************** */
4
5#include <boost/multi_array.hpp>
6
7#include <memory>
8
9#include "xios.hpp"
10
11#include "object_template.hpp"
12#include "group_template.hpp"
13#include "attribute_template.hpp"
14
15#include "icutil.hpp"
16#include "timer.hpp"
17#include "reorder_domain.hpp"
18
19extern "C"
20{
21// /////////////////////////////// Définitions ////////////////////////////// //
22
23   // ----------------------- Redéfinition de types ----------------------------
24
25   typedef xios::CReorderDomain * XReorderDomainPtr;
26
27   // ------------------------ Création des handle -----------------------------
28   void cxios_reorder_domain_handle_create(XReorderDomainPtr * _ret, const char * _id, int _id_len)
29   {
30      std::string id;
31      if (!cstr2string(_id, _id_len, id)) return;
32      CTimer::get("XIOS").resume() ;
33      *_ret = xios::CReorderDomain::get(id);
34      CTimer::get("XIOS").suspend() ;
35   }
36
37   // -------------------- Vérification des identifiants -----------------------
38   void cxios_reorder_domain_valid_id(bool * _ret, const char * _id, int _id_len)
39   {
40      std::string id;
41      if (!cstr2string(_id, _id_len, id)) return;
42
43      CTimer::get("XIOS").resume() ;
44      *_ret = xios::CReorderDomain::has(id);
45      CTimer::get("XIOS").suspend() ;
46   }
47} // extern "C"
Note: See TracBrowser for help on using the repository browser.