summaryrefslogtreecommitdiff
path: root/modules/remote-hip/c++/data.hpp
blob: 04c8111e7b9811e09923db32b208d86af27dcd60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "common.hpp"

namespace saw {

/**
 * Generic wrapper class which stores data on the sycl side.
 * Most of the times this will be a root object.
 */
template<typename Schema>
class data<Schema, encode::Hip<encode::Native>> {
private:
public:
	data(const data<Schema, encode::Native>& data__)
	{}
};
}