goldendict-ng/src/dictionary_group.hh
shenleban tongying 618310f772
Some checks are pending
SonarCloud / Build and analyze (push) Waiting to run
clean: just use #pragma once
2024-11-06 22:53:04 -05:00

32 lines
829 B
C++

/* Licensed under GPLv3 or later, see the LICENSE file */
#pragma once
#include "sptr.hh"
#include "dict/dictionary.hh"
#include "instances.hh"
class DictionaryGroup
{
public:
DictionaryGroup( std::vector< sptr< Dictionary::Class > > const & allDictionaries_,
Instances::Groups const & groups_ ):
allDictionaries( allDictionaries_ ),
groups( groups_ )
{
}
sptr< Dictionary::Class > getDictionaryByName( QString const & dictionaryName );
const std::vector< sptr< Dictionary::Class > > * getActiveDictionaries( unsigned groupId );
sptr< Dictionary::Class > getDictionaryById( const std::string & dictId );
Instances::Group const * getGroupById( unsigned groupId );
private:
std::vector< sptr< Dictionary::Class > > const & allDictionaries;
Instances::Groups const & groups;
};