mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
18 lines
266 B
C++
18 lines
266 B
C++
#ifndef _AddOnHost_IAddOns_h_
|
|
#define _AddOnHost_IAddOns_h_
|
|
|
|
#include <AddOn/AddOn.h>
|
|
|
|
class IDoPlugin : public IAddOn
|
|
{
|
|
public:
|
|
virtual String Do() = 0;
|
|
};
|
|
|
|
class IComputePlugin : public IAddOn
|
|
{
|
|
public:
|
|
virtual String Compute() = 0;
|
|
};
|
|
|
|
#endif
|