Create basic MxNotificationManager class

This commit is contained in:
Joshua Peisach 2023-06-11 03:26:30 -04:00
parent d336f65abe
commit ffad86bda5
2 changed files with 21 additions and 0 deletions

View File

@ -19,6 +19,12 @@ long MxCore::Notify(MxParam &p)
return 0;
}
// FIXME: based on another call, this might be an integer (100edf3c), or whatever undefined4 is
long MxCore::NotificationManager()
{
return 0;
}
long MxCore::Tickle()
{
return 0;

View File

@ -0,0 +1,15 @@
#ifdef MXNOTIFICATIONMANAGER_H
#define MXNOTIFICATIONMANAGER_H
// looks like tickle, only defined then used in its definition and never again
class MxNotificationManager : public MxCore
{
public:
virtual ~MxNotificationManager();
virtual long NotificationManager();
virtual const char* GetClassName() const;
virtual MxBool IsClass(const char* name) const;
};
#endif MXNOTIFICATIONMANAGER_H