Kaydet (Commit) 1f119957 authored tarafından Miklos Vajna's avatar Miklos Vajna

sfx2: initial SfxClassificationCategory

Change-Id: I56f834093a1ee00b793580525ba052026e25289f
üst b84dca7c
...@@ -19,10 +19,19 @@ ...@@ -19,10 +19,19 @@
using namespace com::sun::star; using namespace com::sun::star;
/// Represents one category of a classification policy.
class SfxClassificationCategory
{
public:
std::map<OUString, OUString> m_aLabels;
};
/// Implementation details of SfxClassificationHelper. /// Implementation details of SfxClassificationHelper.
struct SfxClassificationHelper::Impl struct SfxClassificationHelper::Impl
{ {
std::map<OUString, OUString> m_aLabels; std::map<OUString, OUString> m_aLabels;
/// Possible categories of a policy to choose from.
std::map<OUString, SfxClassificationCategory> m_aCategories;
}; };
bool SfxClassificationHelper::IsClassified(SfxObjectShell& rObjectShell) bool SfxClassificationHelper::IsClassified(SfxObjectShell& rObjectShell)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment