mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-26 17:46:38 -05:00
279d626279
This declares a bunch of classes and functions for us, as well as fixes some declarations that were slightly incorrect (e.g. missing "virtual", etc)
10 lines
152 B
C++
Executable file
10 lines
152 B
C++
Executable file
#ifndef VIEWMANAGER_H
|
|
#define VIEWMANAGER_H
|
|
|
|
class ViewManager
|
|
{
|
|
public:
|
|
__declspec(dllexport) void RemoveAll(ViewROI *);
|
|
};
|
|
|
|
#endif // VIEWMANAGER_H
|