#include <string.h>
#include <stdlib.h>
#include <epicsString.h>
#include <string>
#include <vector>
#include <sstream>
#include <fstream>
#include <iostream>
#include <boost/algorithm/string.hpp>
#include "find_calibration_range_utils.h"
Go to the source code of this file.
Functions | |
std::vector< std::string > | getNextLineAndSplitOnComma (std::ifstream &str) |
Gets the next line of an input stream and splits on a comma. More... | |
std::string | str_from_epics (void *raw_rec) |
Extracts a std::string from an epics aSubRecord. More... | |
std::string | find_file (void *BDIR, void *TDIR, void *SPEC) |
Finds the directory to the table file. More... | |
std::string find_file | ( | void * | BDIR, |
void * | TDIR, | ||
void * | SPEC | ||
) |
Finds the directory to the table file.
Definition at line 50 of file find_calibration_range_utils.cpp.
References str_from_epics().
Referenced by find_calibration_range_impl().
std::vector<std::string> getNextLineAndSplitOnComma | ( | std::ifstream & | str | ) |
Gets the next line of an input stream and splits on a comma.
Definition at line 18 of file find_calibration_range_utils.cpp.
Referenced by find_calibration_range_impl().
std::string str_from_epics | ( | void * | raw_rec | ) |
Extracts a std::string from an epics aSubRecord.
Definition at line 40 of file find_calibration_range_utils.cpp.
Referenced by find_file().