initial implementation

This commit is contained in:
Roland Conybeare 2023-10-18 12:06:07 -04:00
commit 1078c49269
30 changed files with 2131 additions and 0 deletions

View file

@ -0,0 +1,19 @@
/* file AbstractStochasticProcess.hpp
*
* author: Roland Conybeare, Nov 2022
*/
#pragma once
#include "xo/reflect/SelfTagging.hpp"
namespace xo {
namespace process {
class AbstractStochasticProcess : public reflect::SelfTagging {
}; /*AbstractStochasticProcess*/
} /*namespace process*/
} /*namespace xo*/
/* end AbstractStochasticProcess.hpp */