File: ContainerIO.cc

package info (click to toggle)
topcom 1.2.0~beta%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 148,596 kB
  • sloc: cpp: 40,956; sh: 4,663; makefile: 679; ansic: 55
file content (23 lines) | stat: -rw-r--r-- 688 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
////////////////////////////////////////////////////////////////////////////////
// 
// ContainerIO.cc
//
//    produced: 13/02/2020 jr
// 
////////////////////////////////////////////////////////////////////////////////

#include "ContainerIO.hh"

namespace topcom {

  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::divide_char     = '/';
  const char* ContainerChars::map_chars       = "->";

}; // namespace topcom

// eof ContainerIO.cc