diff --git a/core/include/quale.h b/core/include/quale.h new file mode 100644 index 0000000..ef21382 --- /dev/null +++ b/core/include/quale.h @@ -0,0 +1,20 @@ +#ifndef _QUALE_H +#define _QUALE_H + +class Quale +{ + int intensity; + enum class Type + { + NEUTRAL, + /* Bounding refers to qualia such as tactile pressure which + * are mostly neutral but disclose information about the limits + * of the body. + **/ + BOUNDING, + PAINFUL, + PLEASURABLE + } type; +}; + +#endif