Added initial base for architecture on the proposed Kompute structure

This commit is contained in:
Alejandro Saucedo 2020-08-15 18:58:18 +01:00
parent 1d318e596d
commit 970f502cda
9 changed files with 197 additions and 21 deletions

17
src/Algorithm.hpp Normal file
View file

@ -0,0 +1,17 @@
#pragma once
namespace kp {
class Algorithm
{
private:
public:
Algorithm();
virtual ~Algorithm();
};
} // End namespace kp