class Benchcc::Fusion::List
Public Instance Methods
headers()
click to toggle source
# File lib/benchcc/fusion.rb, line 15 def headers ["boost/fusion/container/list/list.hpp"] end
includes()
click to toggle source
# File lib/benchcc/fusion.rb, line 9 def includes inc = ["#define FUSION_MAX_LIST_SIZE 50"] inc << headers.map { |hdr| "#include <#{hdr}>" } inc.join("\n") end
to_s()
click to toggle source
# File lib/benchcc/fusion.rb, line 19 def to_s "boost::fusion::list<#{join(', ')}>" end