Rosetta
|
#include <basic/resource_manager/JobOptions.hh>
#include <platform/types.hh>
#include <utility/vector1.hh>
#include <utility/pointer/ReferenceCount.hh>
#include <utility/excn/Exceptions.hh>
#include <utility/file/FileName.hh>
#include <utility/file/PathName.hh>
#include <string>
#include <map>
#include <iomanip>
Go to the source code of this file.
Namespaces | |
basic | |
Tags used to tag messeges sent by MPI functions used to decide whether a slave is requesting a new job id or flagging as job as being a bad input. | |
basic::resource_manager | |
Functions | |
template<class S > | |
void | basic::resource_manager::write_type (std::ostream &out, S val) |
simple enough function that calls the bit-shift operator in the input stream; why bother? For the sake of writing out boolean values as "true" or "false" More... | |
template<> | |
void | basic::resource_manager::write_type< bool > (std::ostream &out, bool val) |
Template specialization to write boolean values as "true" or "false". More... | |
template<class T , class S > | |
void | basic::resource_manager::show_option_map (std::map< T, S > const &option_map, std::ostream &out, char const *option_name) |
template<class T , class S > | |
void | basic::resource_manager::show_option_vector_map (std::map< T, vector1< S > > const &option_map, std::ostream &out, char const *option_name) |
std::ostream & | basic::resource_manager::operator<< (std::ostream &out, JobOptions const &job_options) |
This output-operator function invokes the JobOption's show() method. More... | |
template<class T , class S > | |
void | basic::resource_manager::add_option_to_map (std::map< T, S > &option_map, T const &key, S const &val) |
template<class T , class S > | |
void | basic::resource_manager::remove_option_from_map (std::map< T, S > &option_map, T const &key) |
template<class T , class S > | |
bool | basic::resource_manager::option_map_contains_key (std::map< T, S > const &option_map, T const &key) |
template<class T , class S > | |
S const & | basic::resource_manager::get_option_from_map (std::map< T, S > const &option_map, T const &key, char const *option_class_name) |
Definition in file JobOptions.cc.