File: ContainerIO.cc

package info (click to toggle)
topcom 1.1.2%2Bds-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 31,788 kB
  • sloc: cpp: 37,616; sh: 4,262; makefile: 497; ansic: 49
file content (25 lines) | stat: -rw-r--r-- 695 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
////////////////////////////////////////////////////////////////////////////////
// 
// ContainerIO.cc
//
//    produced: 13/02/2020 jr
// last change: 20/02/2020 jr
// 
////////////////////////////////////////////////////////////////////////////////

#include "ContainerIO.hh"

namespace topcom {

  std::mutex IO_sync::mutex;

  const char  ContainerChars::list_start_char = '[';
  const char  ContainerChars::list_end_char   = ']';
  const char  ContainerChars::set_start_char  = '{';
  const char  ContainerChars::set_end_char    = '}';
  const char  ContainerChars::delim_char      = ',';
  const char* ContainerChars::map_chars       = "->";

}; // namespace topcom

// eof ContainerIO.cc