mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
12 lines
168 B
C++
12 lines
168 B
C++
#ifndef VIEWMANAGER_H
|
|
#define VIEWMANAGER_H
|
|
|
|
class ViewROI;
|
|
|
|
class ViewManager
|
|
{
|
|
public:
|
|
__declspec(dllexport) void RemoveAll(ViewROI *);
|
|
};
|
|
|
|
#endif // VIEWMANAGER_H
|