ultimatepp/bazaar/Functions4U_Demo/Spreadsheet.h
koldo fa56dbf819 .Functions4U_Demo: Changed StaticPlugin demo classes names
git-svn-id: svn://ultimatepp.org/upp/trunk@3255 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2011-03-01 22:40:43 +00:00

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