NSCL DDAS  1.0
Support for XIA DDAS at the NSCL
 All Classes Namespaces Files Functions Variables Macros Pages
StringsToIntegers.h
1 #ifndef __STRINGSTOINTEGERS_H
2 #define __STRINGSTOINTEGERS_H
3 
4 /*
5  This software is Copyright by the Board of Trustees of Michigan
6  State University (c) Copyright 2005.
7 
8  You may use this software under the terms of the GNU public license
9  (GPL). The terms of this license are described at:
10 
11  http://www.gnu.org/licenses/gpl.txt
12 
13  Author:
14  Ron Fox
15  NSCL
16  Michigan State University
17  East Lansing, MI 48824-1321
18 */
19 
20 #ifndef __STL_STRING
21 #include <string>
22 #ifndef __STL_STRING
23 #define __STL_STRING
24 #endif
25 #endif
26 
27 #ifndef __STL_VECTOR
28 #include <vector>
29 #ifndef __STL_VECTOR
30 #define __STL_VECTOR
31 #endif
32 #endif
33 
34 #ifndef __CINVALIDARGUMENTEXCEPTION_H
35 #include <CInvalidArgumentException.h>
36 #endif
37 
38 
39 
42 std::vector<int>
43 stringListToIntegers(std::string items) ;
44 #endif