Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/appshell/iappshellconfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "async/notification.h"

namespace mu::appshell {
class IAppShellConfiguration : MODULE_GLOBAL_EXPORT_INTERFACE
class IAppShellConfiguration : MODULE_GLOBAL_INTERFACE
{
INTERFACE_ID(IAppshellConfiguration)

Expand Down
2 changes: 1 addition & 1 deletion src/appshell/internal/iappmenumodelhook.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include "modularity/imoduleinterface.h"

namespace mu::appshell {
class IAppMenuModelHook : MODULE_EXPORT_INTERFACE
class IAppMenuModelHook : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IAppMenuModelHook)

Expand Down
2 changes: 1 addition & 1 deletion src/appshell/internal/isessionsmanager.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include "modularity/imoduleinterface.h"

namespace mu::appshell {
class ISessionsManager : MODULE_EXPORT_INTERFACE
class ISessionsManager : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(ISessionsManager)

Expand Down
2 changes: 1 addition & 1 deletion src/appshell/internal/istartupscenario.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "async/promise.h"

namespace mu::appshell {
class IStartupScenario : MODULE_EXPORT_INTERFACE
class IStartupScenario : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IStartupScenario)

Expand Down
2 changes: 1 addition & 1 deletion src/braille/ibrailleconfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "brailletypes.h"

namespace mu::braille {
class IBrailleConfiguration : MODULE_GLOBAL_EXPORT_INTERFACE
class IBrailleConfiguration : MODULE_GLOBAL_INTERFACE
{
INTERFACE_ID(IBrailleConfiguration)

Expand Down
2 changes: 1 addition & 1 deletion src/braille/ibrailleconverter.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class Score;
}

namespace mu::braille {
class IBrailleConverter : MODULE_EXPORT_INTERFACE
class IBrailleConverter : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IBrailleConverter)

Expand Down
2 changes: 1 addition & 1 deletion src/braille/inotationbraille.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "brailletypes.h"

namespace mu::braille {
class INotationBraille : MODULE_EXPORT_INTERFACE
class INotationBraille : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(INotationBraille)

Expand Down
2 changes: 1 addition & 1 deletion src/context/iglobalcontext.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "iplaybackstate.h"

namespace mu::context {
class IGlobalContext : MODULE_EXPORT_INTERFACE
class IGlobalContext : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(mu::context::IGlobalContext)

Expand Down
2 changes: 1 addition & 1 deletion src/converter/iconvertercontroller.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "global/progress.h"

namespace mu::converter {
class IConverterController : MODULE_EXPORT_INTERFACE
class IConverterController : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IConverterController)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/engraving/devtools/drawdata/idiagnosticdrawprovider.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "drawdatatypes.h"

namespace mu::engraving {
class IDiagnosticDrawProvider : MODULE_EXPORT_INTERFACE
class IDiagnosticDrawProvider : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IDiagnosticDrawProvider)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/engraving/devtools/iengravingelementsprovider.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
namespace mu::engraving {
class EngravingObject;
using EngravingObjectSet = std::unordered_set<const EngravingObject*>;
class IEngravingElementsProvider : MODULE_EXPORT_INTERFACE
class IEngravingElementsProvider : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IEngravingElementsProvider)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/engraving/iengravingconfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "engraving/types/types.h"

namespace mu::engraving {
class IEngravingConfiguration : MODULE_GLOBAL_EXPORT_INTERFACE
class IEngravingConfiguration : MODULE_GLOBAL_INTERFACE
{
INTERFACE_ID(IEngravingConfiguration)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/engraving/iengravingfontsprovider.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "iengravingfont.h"

namespace mu::engraving {
class IEngravingFontsProvider : MODULE_GLOBAL_EXPORT_INTERFACE
class IEngravingFontsProvider : MODULE_GLOBAL_INTERFACE
{
INTERFACE_ID(IEngravingFontsProvider)

Expand Down
2 changes: 1 addition & 1 deletion src/engraving/iengravingpluginapihelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
namespace mu::engraving {
class Score;

class IEngravingPluginAPIHelper : MODULE_EXPORT_INTERFACE
class IEngravingPluginAPIHelper : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IEngravingPluginAPIHelper)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/engraving/rendering/ieditmoderenderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class EngravingItem;
}

namespace mu::engraving::rendering {
class IEditModeRenderer : MODULE_EXPORT_INTERFACE
class IEditModeRenderer : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IEditModeRenderer)

Expand Down
2 changes: 1 addition & 1 deletion src/engraving/rendering/iscorerenderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ class TimeSig;
}

namespace mu::engraving::rendering {
class IScoreRenderer : MODULE_EXPORT_INTERFACE
class IScoreRenderer : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IScoreRenderer)

Expand Down
2 changes: 1 addition & 1 deletion src/engraving/rendering/isinglerenderer.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class EngravingItem;
}

namespace mu::engraving::rendering {
class ISingleRenderer : MODULE_EXPORT_INTERFACE
class ISingleRenderer : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(ISingleRenderer)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/accessibility/iaccessibilityconfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include "modularity/imoduleinterface.h"

namespace muse::accessibility {
class IAccessibilityConfiguration : MODULE_GLOBAL_EXPORT_INTERFACE
class IAccessibilityConfiguration : MODULE_GLOBAL_INTERFACE
{
INTERFACE_ID(IAccessibilityConfiguration)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/framework/accessibility/iaccessibilitycontroller.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "iaccessible.h"

namespace muse::accessibility {
class IAccessibilityController : MODULE_EXPORT_INTERFACE
class IAccessibilityController : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IAccessibilityController)
public:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include <QAccessibleInterface>

namespace muse::accessibility {
class IQAccessibleInterfaceRegister : MODULE_EXPORT_INTERFACE
class IQAccessibleInterfaceRegister : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IQAccessibleInterfaceRegister)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/actions/iactionsdispatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

namespace muse::actions {
class Actionable;
class IActionsDispatcher : MODULE_EXPORT_INTERFACE
class IActionsDispatcher : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IActionsDispatcher)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/common/iaudiothreadsecurer.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "global/modularity/imoduleinterface.h"

namespace muse::audio {
class IAudioThreadSecurer : MODULE_GLOBAL_EXPORT_INTERFACE
class IAudioThreadSecurer : MODULE_GLOBAL_INTERFACE
{
INTERFACE_ID(IAudioThreadSecurer)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/common/rpc/irpcchannel.h
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ class RpcStream : public IRpcStream, public async::Asyncable
bool m_inited = false;
};

class IRpcChannel : MODULE_EXPORT_INTERFACE
class IRpcChannel : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IRpcChannel)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/engine/iaudioengine.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "internal/mixer.h"

namespace muse::audio::engine {
class IAudioEngine : MODULE_EXPORT_INTERFACE
class IAudioEngine : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IAudioEngine)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/engine/iaudioengineconfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "audio/common/audiotypes.h"

namespace muse::audio::engine {
class IAudioEngineConfiguration : MODULE_GLOBAL_EXPORT_INTERFACE
class IAudioEngineConfiguration : MODULE_GLOBAL_INTERFACE
{
INTERFACE_ID(IAudioEngineConfiguration)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/engine/ienginecontroller.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "audio/common/audiotypes.h"

namespace muse::audio::engine {
class IEngineController : MODULE_EXPORT_INTERFACE
class IEngineController : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IEngineController)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/engine/iengineplayback.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "audio/common/audiotypes.h"

namespace muse::audio::engine {
class IEnginePlayback : MODULE_EXPORT_INTERFACE
class IEnginePlayback : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IEnginePlayback)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/engine/ifxresolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "ifxprocessor.h"

namespace muse::audio::fx {
class IFxResolver : MODULE_EXPORT_INTERFACE
class IFxResolver : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IFxResolver)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/engine/isoundfontrepository.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "audio/common/soundfonttypes.h"

namespace muse::audio::synth {
class ISoundFontRepository : MODULE_EXPORT_INTERFACE
class ISoundFontRepository : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(ISoundFontRepository)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/engine/isynthresolver.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "isynthesizer.h"

namespace muse::audio::synth {
class ISynthResolver : MODULE_EXPORT_INTERFACE
class ISynthResolver : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(ISynthResolver)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/iaudiodrivercontroller.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "modularity/imoduleinterface.h"

namespace muse::audio {
class IAudioDriverController : MODULE_EXPORT_INTERFACE
class IAudioDriverController : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IAudioDriverController)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/main/iaudioconfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "audio/common/audiotypes.h"

namespace muse::audio {
class IAudioConfiguration : MODULE_GLOBAL_EXPORT_INTERFACE
class IAudioConfiguration : MODULE_GLOBAL_INTERFACE
{
INTERFACE_ID(IAudioConfiguration)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/main/iplayback.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class ITracks;
class IPlayer;
class IAudioOutput;

class IPlayback : MODULE_EXPORT_INTERFACE
class IPlayback : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IPlayback)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/main/isoundfontcontroller.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "audio/common/soundfonttypes.h"

namespace muse::audio {
class ISoundFontController : MODULE_EXPORT_INTERFACE
class ISoundFontController : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(ISoundFontController)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/audio/main/istartaudiocontroller.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "global/iapplication.h"

namespace muse::audio {
class IStartAudioController : MODULE_EXPORT_INTERFACE
class IStartAudioController : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IStartAudioController)
public:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "iaudiopluginmetareader.h"

namespace muse::audioplugins {
class IAudioPluginMetaReaderRegister : MODULE_EXPORT_INTERFACE
class IAudioPluginMetaReaderRegister : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IAudioPluginMetaReaderRegister)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/audioplugins/iaudiopluginsconfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "global/io/path.h"

namespace muse::audioplugins {
class IAudioPluginsConfiguration : MODULE_GLOBAL_EXPORT_INTERFACE
class IAudioPluginsConfiguration : MODULE_GLOBAL_INTERFACE
{
INTERFACE_ID(IAudioPluginsConfiguration)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/audioplugins/iaudiopluginsscannerregister.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "iaudiopluginsscanner.h"

namespace muse::audioplugins {
class IAudioPluginsScannerRegister : MODULE_EXPORT_INTERFACE
class IAudioPluginsScannerRegister : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IAudioPluginsScannerRegister)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/audioplugins/iknownaudiopluginsregister.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#include "audiopluginstypes.h"

namespace muse::audioplugins {
class IKnownAudioPluginsRegister : MODULE_EXPORT_INTERFACE
class IKnownAudioPluginsRegister : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IKnownAudioPluginsRegister)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/audioplugins/iregisteraudiopluginsscenario.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#include "global/io/path.h"

namespace muse::audioplugins {
class IRegisterAudioPluginsScenario : MODULE_EXPORT_INTERFACE
class IRegisterAudioPluginsScenario : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IRegisterAudioPluginsScenario)

Expand Down
2 changes: 1 addition & 1 deletion src/framework/autobot/iautobot.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#include "internal/autobotinteractive.h"

namespace muse::autobot {
class IAutobot : MODULE_EXPORT_INTERFACE
class IAutobot : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IAutobot)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/framework/autobot/iautobotconfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include "io/path.h"

namespace muse::autobot {
class IAutobotConfiguration : MODULE_GLOBAL_EXPORT_INTERFACE
class IAutobotConfiguration : MODULE_GLOBAL_INTERFACE
{
INTERFACE_ID(IAutobotConfiguration)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/framework/autobot/iautobotscriptsrepository.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
#include "types/retval.h"

namespace muse::autobot {
class IAutobotScriptsRepository : MODULE_EXPORT_INTERFACE
class IAutobotScriptsRepository : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IAutobotScriptsRepository)
public:
Expand Down
2 changes: 1 addition & 1 deletion src/framework/cloud/audiocom/iaudiocomservice.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class QString;
using DevicePtr = std::shared_ptr<QIODevice>;

namespace muse::cloud {
class IAudioComService : MODULE_EXPORT_INTERFACE
class IAudioComService : MODULE_CONTEXT_INTERFACE
{
INTERFACE_ID(IAudioComService)

Expand Down
Loading
Loading