subrepo: subdir: "xo-process" merged: "ff603471" upstream: origin: "git@github.com:Rconybea/xo-process.git" branch: "main" commit: "ff603471" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
19 lines
367 B
C++
19 lines
367 B
C++
/* 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 */
|