diff options
author | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-11-18 15:26:05 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@collabora.com> | 2013-11-18 17:25:41 -0500 |
commit | eeb91d8f57424c3e2c3d2ea371dd8d00af287953 (patch) | |
tree | 7d7b87b9fd525dab9ebcf0bb045bff855d939699 /sc/inc/externalrefmgr.hxx | |
parent | 6adf0ba4c8815c95b9bdbf274c0e2f774aed9a9f (diff) |
Handle external reference bits too. This is the last missing piece.
Change-Id: Ib1dd18bb5a8d70c53722ac91e2340d05bbc7798a
Diffstat (limited to 'sc/inc/externalrefmgr.hxx')
-rw-r--r-- | sc/inc/externalrefmgr.hxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sc/inc/externalrefmgr.hxx b/sc/inc/externalrefmgr.hxx index c072cfd5eb2a..d5b4d7f20f2c 100644 --- a/sc/inc/externalrefmgr.hxx +++ b/sc/inc/externalrefmgr.hxx @@ -586,6 +586,13 @@ public: * @return const OUString* external document URI. */ const OUString* getExternalFileName(sal_uInt16 nFileId, bool bForceOriginal = false); + + /** + * Get all cached external file names as an array. Array indices of the + * returned name array correspond with external file ID's. + */ + std::vector<OUString> getAllCachedExternalFileNames() const; + bool hasExternalFile(sal_uInt16 nFileId) const; bool hasExternalFile(const OUString& rFile) const; const SrcFileData* getExternalFileData(sal_uInt16 nFileId) const; |