ATLAS Offline Software
Loading...
Searching...
No Matches
StrUtil.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#include <string>
6#include <vector>
7
8//using namespace std;
9
10namespace GRLStrUtil {
11 void trim (std::string& input);
12 void split (const std::string& input, std::string& first, std::string& second);
13 std::vector<std::string> split(std::string input);
14}
15
void split(const std::string &input, std::string &first, std::string &second)
Definition StrUtil.cxx:23
void trim(std::string &input)
Definition StrUtil.cxx:12