Add gitignores for Automake and add new files

This commit is contained in:
2024-11-21 02:31:37 +11:00
parent 4f0da885dd
commit 30da26f0e4
8 changed files with 6466 additions and 15 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef _VALUE_JUDGEMENT_H
#define _VALUE_JUDGEMENT_H
#include <cstdint>
class ValueJdgmnt
{
uint32_t intensity;
};
class PosValueJdgmnt
: public ValueJdgmnt
{
};
class NegValueJdgmnt
: public ValueJdgmnt
{
};
class NtrlValueJdgmnt
: public ValueJdgmnt
{
};
#endif