#include <stdint.h>
#include <iostream>
#include <sstream>
#include <string>
#include <map>
#include <vector>
#include "conffwk/Configuration.hpp"
#include "conffwk/DalObject.hpp"
#include "confmodel/Resource.hpp"
Go to the source code of this file.
◆ to_resources()
Definition at line 108 of file ResourceSet.hpp.
108 {
109 std::vector<const dunedaq::confmodel::Resource*> resources;
110 resources.reserve(vector_of_children.size());
111
112 std::copy(vector_of_children.begin(), vector_of_children.end(), std::back_inserter(resources));
113
114 return resources;
115
116}