Get rid of enum Quale::Type, create BoundingQuale; use typeid()

We just learned about typeid. Apparently it was either not mentioned
in the Stroupstrup book or we totally missed it.
This commit is contained in:
2025-08-03 05:23:05 -04:00
parent 79825e4da3
commit 6f6fa77498
2 changed files with 18 additions and 16 deletions
+5 -1
View File
@@ -11,9 +11,13 @@ namespace smo {
* Mentexents are Mentities, but not all Mentities are Mentexents.
*/
class MentalExistent
struct MentalExistent
: public MentalEntity
{
public:
MentalExistent(const MentalEntity::Id id)
: MentalEntity(id)
{}
};
typedef MentalExistent Mentexent;