Add OpType for Metal Claw operators

This commit is contained in:
2017-10-15 00:55:25 -05:00
parent 1cf6164358
commit 009cf99225
3 changed files with 28 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
/*
* Copyright 2015 - 2017 gtalent2@gmail.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#pragma once
namespace ox {
enum class OpType {
Read = 0,
Write = 1
};
}