mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-17 14:16:10 -06:00
23 lines
420 B
C++
23 lines
420 B
C++
#ifndef _PluginDemo_Spreadsheet_h_
|
|
#define _PluginDemo_Spreadsheet_h_
|
|
|
|
#include <Functions4U/Functions4U.h>
|
|
|
|
#define Spreadsheet_API \
|
|
virtual bool Open(const char *filename); \
|
|
virtual void SetData(int row, int col, Value val);
|
|
|
|
|
|
class SpreadsheetAPI {
|
|
public:
|
|
Spreadsheet_API
|
|
};
|
|
|
|
|
|
class Spreadsheet : public SpreadsheetAPI, public StaticPlugin {
|
|
public:
|
|
Spreadsheet_API
|
|
};
|
|
|
|
|
|
#endif
|