source: XIOS/dev/branch_openmp/src/group_factory.cpp @ 1348

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

omp_dev

  • Property copyright set to
    Software name : XIOS (Xml I/O Server)
    http://forge.ipsl.jussieu.fr/ioserver
    Creation date : January 2009
    Licence : CeCCIL version2
    see license file in root directory : Licence_CeCILL_V2-en.txt
    or http://www.cecill.info/licences/Licence_CeCILL_V2-en.html
    Holder : CEA/LSCE (Laboratoire des Sciences du CLimat et de l'Environnement)
    CNRS/IPSL (Institut Pierre Simon Laplace)
    Project Manager : Yann Meurdesoif
    yann.meurdesoif@cea.fr
File size: 538 bytes
Line 
1#include "group_factory.hpp"
2
3namespace xios
4{
5   /// ////////////////////// Définitions ////////////////////// ///
6   StdString *CGroupFactory::CurrContext_ptr = 0;
7
8   void CGroupFactory::SetCurrentContextId(const StdString & context)
9   { 
10      if(CGroupFactory::CurrContext_ptr == 0 ) CGroupFactory::CurrContext_ptr = new StdString; 
11      CGroupFactory::CurrContext_ptr->assign(context);
12   }
13
14   StdString & CGroupFactory::GetCurrentContextId(void)
15   { 
16      return (*CGroupFactory::CurrContext_ptr);
17   }
18
19} // namespace xios
Note: See TracBrowser for help on using the repository browser.