aboutsummaryrefslogtreecommitdiff
path: root/src/id.hh
blob: e088802106b3eb80fe834b2b73e4b0f65f7b68ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef FORMALINE_ID_HH
#define FORMALINE_ID_HH

#include "cctk.h"

namespace Formaline
{
  
  // Get a unique build id
  char const *
  get_build_id (cGH const * const cctkGH);
  
  // Get a unique simulation id
  char const *
  get_simulation_id (cGH const * const cctkGH);
  
  // Get a unique run id
  char const *
  get_run_id (cGH const * const cctkGH);
  
} // namespace Formaline

#endif // #ifndef FORMALINE_ID_HH