source: XIOS/trunk/src/interface/c/icaxis.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 "object_template_impl.hpp"
11#include "group_template_impl.hpp"
12#include "attribute_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::CAxis      * XAxisPtr;
23   typedef xios::CAxisGroup * XAxisGroupPtr;
24
25   // ------------------------ Création des handle -----------------------------
26   
27   void cxios_axis_handle_create (XAxisPtr * _ret, const char * _id, int _id_len)
28   {
29      std::string id; 
30      if (!cstr2string(_id, _id_len, id)) return;
31
32      *_ret = xios::CAxis::get(id).get();
33   }
34   
35   void cxios_axisgroup_handle_create (XAxisGroupPtr * _ret, const char * _id, int _id_len)
36   {
37      std::string id; 
38      if (!cstr2string(_id, _id_len, id)) return;
39
40      *_ret = xios::CAxisGroup::get(id).get();
41   }
42
43   // -------------------- Vérification des identifiants -----------------------
44
45   void cxios_axis_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 = xios::CAxis::has(id);
51   }
52
53   void cxios_axisgroup_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 = xios::CAxisGroup::has(id);
59   }
60   
61} // extern "C"
Note: See TracBrowser for help on using the repository browser.