Rename corelogic->hcore, add simulator skeleton classes

This commit is contained in:
2025-01-03 20:02:24 -04:00
parent bb54aac865
commit f9b377a9f4
30 changed files with 153 additions and 9 deletions
+15
View File
@@ -0,0 +1,15 @@
#ifndef _ASSOCIATION_H
#define _ASSOCIATION_H
#include <chronomenon.h>
#include <existent.h>
class Association
{
public:
Association(Quale quale, Chronomenon chron);
Association(Quale quale, Existent ex);
Association(Quale quale, Existent ex);
};
#endif