separate.h
1//-*-C++-*-
2/***************************************************************************
3 *
4 * Copyright (C) 2004 by Willem van Straten
5 * Licensed under the Academic Free License version 2.1
6 *
7 ***************************************************************************/
8
9// psrchive/Util/units/separate.h
10
11#ifndef __UTILS_UNITS_SEPARATE_H
12#define __UTILS_UNITS_SEPARATE_H
13
14#include <vector>
15#include <string>
16
18bool braced (const std::string&);
19
21void separate (std::string text, std::vector<std::string>& list,
22 const std::string& delimiters = " \t\n");
23
24void standard_separation (std::vector<std::string>& list, const std::string&);
25
26#endif
27

Generated using doxygen 1.14.0