source: XIOS/trunk/src/interface/c/icgrid.cpp @ 346

Last change on this file since 346 was 346, checked in by ymipsl, 12 years ago

Suppress access to CObjectFactory class and CTreeManager.

YM

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1/* ************************************************************************** *
2 *      Copyright © IPSL/LSCE, xios, Avril 2010 - Octobre 2011         *
3 * ************************************************************************** */
4
5#include <boost/multi_array.hpp>
6#include <boost/shared_ptr.hpp>
7
8#include "xmlioserver.hpp"
9
10#include "attribute_template_impl.hpp"
11#include "object_template_impl.hpp"
12#include "group_template_impl.hpp"
13
14#include "icutil.hpp"
15
16extern "C"
17{
18// /////////////////////////////// Définitions ////////////////////////////// //
19
20   // ----------------------- Redéfinition de types ----------------------------
21   
22   typedef xios::CGrid      * XGridPtr;
23   typedef xios::CGridGroup * XGridGroupPtr;
24
25   // ------------------------ Création des handle -----------------------------
26 
27   void cxios_grid_handle_create (XGridPtr * _ret, const char * _id, int _id_len)
28   {
29      std::string id; 
30      if (!cstr2string(_id, _id_len, id)) return;
31
32      *_ret = CGrid::get(id).get();
33   }
34   
35   void cxios_gridgroup_handle_create (XGridGroupPtr * _ret, const char * _id, int _id_len)
36   {
37      std::string id; 
38      if (!cstr2string(_id, _id_len, id)) return;
39
40      *_ret = CGridGroup::get(id).get();
41   }
42
43   // -------------------- Vérification des identifiants -----------------------
44
45   void cxios_grid_valid_id (bool * _ret, const char * _id, int _id_len)
46   {
47      std::string id;
48      if (!cstr2string(_id, _id_len, id)) return;
49
50      *_ret = CGrid::has(id);
51   }
52
53   void cxios_gridgroup_valid_id (bool * _ret, const char * _id, int _id_len)
54   {
55      std::string id;
56      if (!cstr2string(_id, _id_len, id)) return;
57
58      *_ret = CGridGroup::has(id);
59   }
60} // extern "C"
Note: See TracBrowser for help on using the repository browser.