summaryrefslogtreecommitdiff
path: root/src/mem/ruby/libruby_internal.hh
blob: efa855c8235a6d802532ddb39eb86eb9443639e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef LIBRUBY_INTERNAL_H
#define LIBRUBY_INTERNAL_H

#include "mem/ruby/libruby.hh"

#include <ostream>
#include <string>

std::string RubyRequestType_to_string(const RubyRequestType& obj);
RubyRequestType string_to_RubyRequestType(std::string);
std::ostream& operator<<(std::ostream& out, const RubyRequestType& obj);

#endif