Functions4U_Demo: Updated namespaces and time callbacks

git-svn-id: svn://ultimatepp.org/upp/trunk@11813 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
koldo 2018-03-02 13:50:08 +00:00
parent aa20988332
commit e702db1d97
2 changed files with 4 additions and 2 deletions

View file

@ -1,3 +1,5 @@
description "Functions4U demo console\377";
uses
Core,
Functions4U;

View file

@ -6,8 +6,8 @@ using namespace Upp;
#include "Spreadsheet.h"
bool SpreadsheetAPI::Open(const char *filename) {return false;};
void SpreadsheetAPI::SetData(int row, int col, Value val) {};
bool SpreadsheetAPI::Open(const char *filename) {return false;}
void SpreadsheetAPI::SetData(int row, int col, Value val) {}
bool Spreadsheet::Open(const char *filename) {return (static_cast<SpreadsheetAPI *>(GetData()))->Open(filename);}