source: XIOS/dev/dev_ym/XIOS_COUPLING/src/distribution/element_view.hpp @ 2230

Last change on this file since 2230 was 1918, checked in by ymipsl, 4 years ago

Big update on on going work related to data distribution and transfer between clients and servers.

  • move all related file into distribution directorie
  • implement the concept of data "View"
  • implement the concept of "connector" which make the data transfer between 2 differents "Views"

YM

  • Property svn:executable set to *
File size: 328 bytes
Line 
1#ifndef __ELEMENT_VIEW_HPP__
2#define __ELEMENT_VIEW_HPP__
3
4#include "xios_spl.hpp"
5#include "array_new.hpp"
6
7namespace xios
8{
9  class CElementView
10  {
11    public:
12      enum type : size_t { FULL=0, MODEL, WORKFLOW} ;
13      const static int numViewType_ = 3 ;
14    protected:
15      type type_;
16  } ;
17 
18}
19
20#endif
Note: See TracBrowser for help on using the repository browser.