From 1f1199574e839ab5da4fc0a494a2fe21cef3c24e Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Tue, 23 Feb 2016 10:31:31 +0100 Subject: sfx2: initial SfxClassificationCategory Change-Id: I56f834093a1ee00b793580525ba052026e25289f --- sfx2/source/view/classificationhelper.cxx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sfx2/source/view/classificationhelper.cxx b/sfx2/source/view/classificationhelper.cxx index 86ab579ef5df..979f60c5711d 100644 --- a/sfx2/source/view/classificationhelper.cxx +++ b/sfx2/source/view/classificationhelper.cxx @@ -19,10 +19,19 @@ using namespace com::sun::star; +/// Represents one category of a classification policy. +class SfxClassificationCategory +{ +public: + std::map m_aLabels; +}; + /// Implementation details of SfxClassificationHelper. struct SfxClassificationHelper::Impl { std::map m_aLabels; + /// Possible categories of a policy to choose from. + std::map m_aCategories; }; bool SfxClassificationHelper::IsClassified(SfxObjectShell& rObjectShell) -- cgit