summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-03 13:29:43 +0200
committerNoel Grandin <noel@peralex.com>2014-03-05 09:17:42 +0200
commitd7f1f91b194da1cb96e66268ce7ef38602aa5754 (patch)
tree900d87c3e8541eb9abdf7bf1cd23e080366a134b /include
parent2c62596cf264ef10749d8bfdb2bb2ebef2d98fbc (diff)
remove unused code in formula/vectortoken
Remove these methods:. formula::DoubleVectorRefToken::GetRequestedArrayLength() formula::SingleVectorRefToken::GetRequestedArrayLength() formula::SingleVectorRefToken::SingleVectorRefToken( double const*, unsigned long, unsigned long) and optimise some accessor methods. Change-Id: I04f53593894a59dbefdd1cbc9505c6eb7cd8610b
Diffstat (limited to 'include')
-rw-r--r--include/formula/vectortoken.hxx17
1 files changed, 7 insertions, 10 deletions
diff --git a/include/formula/vectortoken.hxx b/include/formula/vectortoken.hxx
index 5fa596b57c00..ca858aecec34 100644
--- a/include/formula/vectortoken.hxx
+++ b/include/formula/vectortoken.hxx
@@ -56,14 +56,12 @@ class FORMULA_DLLPUBLIC SingleVectorRefToken : public FormulaToken
size_t mnArrayLength;
public:
- SingleVectorRefToken( const double* pArray, size_t nReqLength, size_t nArrayLength );
SingleVectorRefToken( const VectorRefArray& rArray, size_t nReqLength, size_t nArrayLength );
virtual FormulaToken* Clone() const;
- const VectorRefArray& GetArray() const;
- size_t GetRequestedArrayLength() const;
- size_t GetArrayLength() const;
+ inline const VectorRefArray& GetArray() const { return maArray; }
+ inline size_t GetArrayLength() const { return mnArrayLength; }
};
/**
@@ -90,12 +88,11 @@ public:
virtual FormulaToken* Clone() const;
- const std::vector<VectorRefArray>& GetArrays() const;
- size_t GetRequestedArrayLength() const;
- size_t GetArrayLength() const;
- size_t GetRefRowSize() const;
- bool IsStartFixed() const;
- bool IsEndFixed() const;
+ inline const std::vector<VectorRefArray>& GetArrays() const { return maArrays; }
+ inline size_t GetArrayLength() const { return mnArrayLength; }
+ inline size_t GetRefRowSize() const { return mnRefRowSize; }
+ inline bool IsStartFixed() const { return mbStartFixed; }
+ inline bool IsEndFixed() const { return mbEndFixed; }
};
}