New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
tracer.hpp in vendors/XIOS/current/src – NEMO

source: vendors/XIOS/current/src/tracer.hpp @ 3408

Last change on this file since 3408 was 3408, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

  • Property svn:keywords set to Id
File size: 309 bytes
Line 
1#ifndef __TRACER_HPP__
2#define __TRACER_HPP__
3
4#include <string>
5
6namespace xios
7{
8  using namespace std ;
9 
10  void traceOn(void) ;
11  void traceOff(void) ;
12 
13  void traceBegin(const string& name) ;
14  void traceEnd(const string& name) ;
15 
16  void marker(const string& name,const string& text) ;
17
18}
19
20
21
22#endif
Note: See TracBrowser for help on using the repository browser.