Fix some class errors

This commit is contained in:
ecumber 2023-06-23 17:36:29 -07:00
parent 12ab2bc6cc
commit d5640b9095
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,9 @@
#ifndef MXPRESENTER_H #ifndef MXPRESENTER_H
#define MXPRESENTER_H #define MXPRESENTER_H
#include "mxstreamcontroller.h"
#include "mxdsaction.h"
class MxPresenter class MxPresenter
{ {
protected: protected:

View File

@ -8,6 +8,7 @@ class MxStreamer
public: public:
__declspec(dllexport) MxStreamController *Open(const char *name, unsigned short p); __declspec(dllexport) MxStreamController *Open(const char *name, unsigned short p);
__declspec(dllexport) long Close(const char *p); __declspec(dllexport) long Close(const char *p);
const char* GetClassName();
}; };