summaryrefslogtreecommitdiff
path: root/sc/inc/calcconfig.hxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-11-03 10:57:39 +0200
committerTor Lillqvist <tml@collabora.com>2014-11-06 11:49:23 +0200
commitef1cce467728c1fcfd78871990a8b5af09a0fc85 (patch)
treedac33d0e532c41cfbb1b1710a28510c52a259198 /sc/inc/calcconfig.hxx
parentd6f852ef140d57c82b945fa4ec3954ad9db0a8b1 (diff)
Add a setting for what subset of functions we use OpenCL for
Change-Id: I9ecea99a921a9230fa80f813627db6cdf7ed5875
Diffstat (limited to 'sc/inc/calcconfig.hxx')
-rw-r--r--sc/inc/calcconfig.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/sc/inc/calcconfig.hxx b/sc/inc/calcconfig.hxx
index 277d27a16219..77e944dded6f 100644
--- a/sc/inc/calcconfig.hxx
+++ b/sc/inc/calcconfig.hxx
@@ -11,7 +11,11 @@
#define INCLUDED_SC_INC_CALCCONFIG_HXX
#include "scdllapi.h"
+
+#include <set>
+
#include <formula/grammar.hxx>
+#include <formula/opcode.hxx>
#include <rtl/ustring.hxx>
@@ -46,6 +50,7 @@ struct SC_DLLPUBLIC ScCalcConfig
bool mbOpenCLAutoSelect:1;
OUString maOpenCLDevice;
int mnOpenCLMinimumFormulaGroupSize;
+ std::set<OpCodeEnum> maOpenCLSubsetFunctions;
ScCalcConfig();