Skip to content
Open
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
5 changes: 0 additions & 5 deletions Eradication/AdditionalRestrictions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
namespace Kernel
{
BEGIN_QUERY_INTERFACE_BODY(HasIntervention)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(HasIntervention)

Expand Down Expand Up @@ -54,7 +53,6 @@ namespace Kernel
}

BEGIN_QUERY_INTERFACE_BODY(HasIP)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(HasIP)

Expand Down Expand Up @@ -97,10 +95,7 @@ namespace Kernel
release_assert(false);
}



BEGIN_QUERY_INTERFACE_BODY(IsPregnant)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(IsPregnant)

Expand Down
2 changes: 2 additions & 0 deletions Eradication/AdditionalRestrictionsAbstract.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ namespace Kernel
AdditionalRestrictionsAbstract();
virtual bool Configure(const Configuration* config) override;

virtual IConfigurable* GetConfigurable() override { return JsonConfigurable::GetConfigurable(); }

protected:
bool m_CompareTo;
};
Expand Down
4 changes: 0 additions & 4 deletions Eradication/AdditionalRestrictionsHIV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
namespace Kernel
{
BEGIN_QUERY_INTERFACE_BODY(IsHivPositive)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(IsHivPositive)

Expand Down Expand Up @@ -75,7 +74,6 @@ namespace Kernel
}

BEGIN_QUERY_INTERFACE_BODY(IsOnART)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(IsOnART)

Expand All @@ -99,7 +97,6 @@ namespace Kernel
}

BEGIN_QUERY_INTERFACE_BODY(HasBeenOnArtMoreOrLessThanNumMonths)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(HasBeenOnArtMoreOrLessThanNumMonths)

Expand Down Expand Up @@ -147,7 +144,6 @@ namespace Kernel
}

BEGIN_QUERY_INTERFACE_BODY(HasCd4BetweenMinAndMax)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(HasCd4BetweenMinAndMax)

Expand Down
4 changes: 0 additions & 4 deletions Eradication/AdditionalRestrictionsSTI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
namespace Kernel
{
BEGIN_QUERY_INTERFACE_BODY(IsCircumcised)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(IsCircumcised)

Expand All @@ -34,7 +33,6 @@ namespace Kernel
}

BEGIN_QUERY_INTERFACE_BODY(IsPostDebut)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(IsPostDebut)

Expand All @@ -58,7 +56,6 @@ namespace Kernel
}

BEGIN_QUERY_INTERFACE_BODY(HasMoreOrLessThanNumPartners)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(HasMoreOrLessThanNumPartners)

Expand Down Expand Up @@ -125,7 +122,6 @@ namespace Kernel
}

BEGIN_QUERY_INTERFACE_BODY(HasHadMultiplePartnersInLastNumMonths)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(HasHadMultiplePartnersInLastNumMonths)

Expand Down
5 changes: 2 additions & 3 deletions Eradication/BroadcastCoordinatorEvent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
#endif

#include "BroadcastCoordinatorEvent.h"
#include "InterventionFactory.h"
#include "Log.h"
#include "EventTriggerCoordinator.h"
#include "NodeEventContext.h"
#include "SimulationEventContext.h"

Expand All @@ -16,7 +14,8 @@ SETUP_LOGGING( "BroadcastCoordinatorEvent" )
namespace Kernel
{
IMPLEMENT_FACTORY_REGISTERED( BroadcastCoordinatorEvent )
IMPL_QUERY_INTERFACE2( BroadcastCoordinatorEvent, IEventCoordinator, IConfigurable )
BEGIN_QUERY_INTERFACE_BODY(BroadcastCoordinatorEvent)
END_QUERY_INTERFACE_BODY(BroadcastCoordinatorEvent)

BroadcastCoordinatorEvent::BroadcastCoordinatorEvent()
: JsonConfigurable()
Expand Down
2 changes: 2 additions & 0 deletions Eradication/BroadcastCoordinatorEvent.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ namespace Kernel
virtual bool Configure( const Configuration * inputJson ) override;
virtual QuickBuilder GetSchema() override;

virtual IConfigurable* GetConfigurable() override { return JsonConfigurable::GetConfigurable(); }

// IEventCoordinator methods
virtual void SetContextTo( ISimulationEventContext *isec ) override;
virtual void CheckStartDay( float campaignStartDay ) const override { };
Expand Down
4 changes: 2 additions & 2 deletions Eradication/CalendarEventCoordinator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ SETUP_LOGGING( "CalendarEventCoordinator" )
namespace Kernel
{
IMPLEMENT_FACTORY_REGISTERED(CalendarEventCoordinator)

IMPL_QUERY_INTERFACE2(CalendarEventCoordinator, IEventCoordinator, IConfigurable)
BEGIN_QUERY_INTERFACE_BODY(CalendarEventCoordinator)
END_QUERY_INTERFACE_BODY(CalendarEventCoordinator)

CalendarEventCoordinator::CalendarEventCoordinator()
: StandardInterventionDistributionEventCoordinator(false)//false=don't use standard demographic coverage
Expand Down
7 changes: 3 additions & 4 deletions Eradication/CampaignEvent.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
#include "Log.h"
#include "Configuration.h"
#include "Configure.h"
#include "ConfigurationImpl.h"
#include "CampaignEvent.h"
#include "EventCoordinator.h"
#include "FactorySupport.h"
Expand All @@ -29,7 +28,7 @@ namespace Kernel
template CampaignEventFactory* ObjectFactory<CampaignEvent, CampaignEventFactory>::getInstance();

CampaignEventFactory::CampaignEventFactory()
: ObjectFactory<CampaignEvent, CampaignEventFactory>( false ) // do not queryForReturnInterface
: ObjectFactory<CampaignEvent, CampaignEventFactory>()
{
}

Expand Down Expand Up @@ -75,8 +74,8 @@ namespace Kernel
// CampaignEvent

IMPLEMENT_FACTORY_REGISTERED(CampaignEvent)

IMPL_QUERY_INTERFACE1(CampaignEvent, IConfigurable)
BEGIN_QUERY_INTERFACE_BODY(CampaignEvent)
END_QUERY_INTERFACE_BODY(CampaignEvent)

CampaignEvent::CampaignEvent()
: start_day(0.0f)
Expand Down
3 changes: 2 additions & 1 deletion Eradication/CampaignEventByYear.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ namespace Kernel
//
// CampaignEventByYear class here.
//
IMPL_QUERY_INTERFACE1(CampaignEventByYear, IConfigurable)
IMPLEMENT_FACTORY_REGISTERED(CampaignEventByYear)
BEGIN_QUERY_INTERFACE_BODY(CampaignEventByYear)
END_QUERY_INTERFACE_BODY(CampaignEventByYear)

CampaignEventByYear::CampaignEventByYear()
{
Expand Down
3 changes: 2 additions & 1 deletion Eradication/CommunityHealthWorkerEventCoordinator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ namespace Kernel
// ------------------------------------------------------------------------

IMPLEMENT_FACTORY_REGISTERED(CommunityHealthWorkerEventCoordinator)
IMPL_QUERY_INTERFACE2(CommunityHealthWorkerEventCoordinator, IEventCoordinator, IConfigurable)
BEGIN_QUERY_INTERFACE_BODY(CommunityHealthWorkerEventCoordinator)
END_QUERY_INTERFACE_BODY(CommunityHealthWorkerEventCoordinator)

CommunityHealthWorkerEventCoordinator::CommunityHealthWorkerEventCoordinator()
: m_Parent( nullptr )
Expand Down
2 changes: 2 additions & 0 deletions Eradication/CommunityHealthWorkerEventCoordinator.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ namespace Kernel
virtual bool Configure( const Configuration * inputJson ) override;
virtual QuickBuilder GetSchema() override;

virtual IConfigurable* GetConfigurable() override { return JsonConfigurable::GetConfigurable(); }

// IEventCoordinator methods
virtual void SetContextTo( ISimulationEventContext *isec ) override;
virtual void CheckStartDay( float campaignStartDay ) const override {};
Expand Down
4 changes: 2 additions & 2 deletions Eradication/CoverageByNodeEventCoordinator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ namespace Kernel
// ------------------------------------------------------------------------

IMPLEMENT_FACTORY_REGISTERED(CoverageByNodeEventCoordinator)

IMPL_QUERY_INTERFACE2(CoverageByNodeEventCoordinator, IEventCoordinator, IConfigurable)
BEGIN_QUERY_INTERFACE_BODY(CoverageByNodeEventCoordinator)
END_QUERY_INTERFACE_BODY(CoverageByNodeEventCoordinator)

CoverageByNodeEventCoordinator::CoverageByNodeEventCoordinator()
: StandardInterventionDistributionEventCoordinator( false )//false=don't use standard demographic coverage
Expand Down
3 changes: 2 additions & 1 deletion Eradication/DelayEventCoordinator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ SETUP_LOGGING( "DelayEventCoordinator" )
namespace Kernel
{
IMPLEMENT_FACTORY_REGISTERED( DelayEventCoordinator )
IMPL_QUERY_INTERFACE2( DelayEventCoordinator, IEventCoordinator, IConfigurable )
BEGIN_QUERY_INTERFACE_BODY(DelayEventCoordinator)
END_QUERY_INTERFACE_BODY(DelayEventCoordinator)

DelayEventCoordinator::DelayEventCoordinator()
: TriggeredEventCoordinator()
Expand Down
3 changes: 2 additions & 1 deletion Eradication/FirstNodeWithNodePropertyEventCoordinator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ namespace Kernel
// ------------------------------------------------------------------------

IMPLEMENT_FACTORY_REGISTERED( FirstNodeWithNodePropertyEventCoordinator )
IMPL_QUERY_INTERFACE2( FirstNodeWithNodePropertyEventCoordinator, IEventCoordinator, IConfigurable )
BEGIN_QUERY_INTERFACE_BODY(FirstNodeWithNodePropertyEventCoordinator)
END_QUERY_INTERFACE_BODY(FirstNodeWithNodePropertyEventCoordinator)

FirstNodeWithNodePropertyEventCoordinator::FirstNodeWithNodePropertyEventCoordinator()
: TriggeredEventCoordinator()
Expand Down
1 change: 0 additions & 1 deletion Eradication/HasRelationship.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ static constexpr float DAYSPERMONTH = (DAYSPERYEAR / MONTHSPERYEAR);
namespace Kernel
{
BEGIN_QUERY_INTERFACE_BODY(HasRelationship)
HANDLE_INTERFACE(IConfigurable)
HANDLE_INTERFACE(IAdditionalRestrictions)
END_QUERY_INTERFACE_BODY(HasRelationship)

Expand Down
1 change: 0 additions & 1 deletion Eradication/IncidenceEventCoordinator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,6 @@ namespace Kernel
IMPLEMENT_FACTORY_REGISTERED( IncidenceEventCoordinator )

BEGIN_QUERY_INTERFACE_BODY( IncidenceEventCoordinator )
HANDLE_INTERFACE( IConfigurable )
HANDLE_INTERFACE( IEventCoordinator )
HANDLE_ISUPPORTS_VIA( IEventCoordinator )
END_QUERY_INTERFACE_BODY( IncidenceEventCoordinator )
Expand Down
2 changes: 2 additions & 0 deletions Eradication/IncidenceEventCoordinator.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,8 @@ namespace Kernel
virtual bool Configure( const Configuration * inputJson ) override;
virtual QuickBuilder GetSchema() override;

virtual IConfigurable* GetConfigurable() override { return JsonConfigurable::GetConfigurable(); }

// IEventCoordinator methods
virtual void SetContextTo( ISimulationEventContext *isec ) override;
virtual void CheckStartDay( float campaignStartDay ) const override { };
Expand Down
3 changes: 2 additions & 1 deletion Eradication/NChooserEventCoordinator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,8 @@ namespace Kernel
// ------------------------------------------------------------------------

IMPLEMENT_FACTORY_REGISTERED(NChooserEventCoordinator)
IMPL_QUERY_INTERFACE2(NChooserEventCoordinator, IEventCoordinator, IConfigurable)
BEGIN_QUERY_INTERFACE_BODY(NChooserEventCoordinator)
END_QUERY_INTERFACE_BODY(NChooserEventCoordinator)

NChooserEventCoordinator::NChooserEventCoordinator()
: m_Parent( nullptr )
Expand Down
2 changes: 2 additions & 0 deletions Eradication/NChooserEventCoordinator.h
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,8 @@ namespace Kernel

virtual bool Configure( const Configuration * inputJson ) override;

virtual IConfigurable* GetConfigurable() override { return JsonConfigurable::GetConfigurable(); }

// IEventCoordinator methods
virtual void SetContextTo(ISimulationEventContext *isec) override;
virtual void CheckStartDay( float campaignStartDay ) const override;
Expand Down
5 changes: 0 additions & 5 deletions Eradication/NChooserEventCoordinatorHIV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ namespace Kernel
// --- TargetedDistributionHIV
// ------------------------------------------------------------------------

BEGIN_QUERY_INTERFACE_DERIVED(TargetedDistributionHIV,TargetedDistributionSTI)
END_QUERY_INTERFACE_DERIVED(TargetedDistributionHIV,TargetedDistributionSTI)


TargetedDistributionHIV::TargetedDistributionHIV( NChooserObjectFactory* pObjectFactory )
: TargetedDistributionSTI(pObjectFactory)
, m_Vector2dStringDiseaseStates()
Expand Down Expand Up @@ -225,7 +221,6 @@ namespace Kernel
// ------------------------------------------------------------------------

IMPLEMENT_FACTORY_REGISTERED(NChooserEventCoordinatorHIV)
IMPL_QUERY_INTERFACE2(NChooserEventCoordinatorHIV, IEventCoordinator, IConfigurable)

NChooserEventCoordinatorHIV::NChooserEventCoordinatorHIV()
: NChooserEventCoordinatorSTI( new NChooserObjectFactoryHIV() )
Expand Down
5 changes: 0 additions & 5 deletions Eradication/NChooserEventCoordinatorHIV.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
namespace Kernel
{
class TargetedDistributionHIV;
//struct IIndividualHumanEventContext;
struct IIndividualHumanSTI;
struct IIndividualHumanHIV;
struct IHIVMedicalHistory;
Expand Down Expand Up @@ -47,8 +46,6 @@ namespace Kernel
class IDMAPI TargetedDistributionHIV : public TargetedDistributionSTI
{
public:
DECLARE_QUERY_INTERFACE()

TargetedDistributionHIV( NChooserObjectFactory* pObjectFactory );
virtual ~TargetedDistributionHIV();

Expand Down Expand Up @@ -96,8 +93,6 @@ namespace Kernel
{
DECLARE_FACTORY_REGISTERED_EXPORT(EventCoordinatorFactory, NChooserEventCoordinatorHIV, IEventCoordinator)
public:
DECLARE_QUERY_INTERFACE()

NChooserEventCoordinatorHIV();
NChooserEventCoordinatorHIV( NChooserObjectFactory* pObjectFactory );
virtual ~NChooserEventCoordinatorHIV();
Expand Down
2 changes: 0 additions & 2 deletions Eradication/NChooserEventCoordinatorSTI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ namespace Kernel
BEGIN_QUERY_INTERFACE_DERIVED(TargetedDistributionSTI,TargetedDistribution)
END_QUERY_INTERFACE_DERIVED(TargetedDistributionSTI,TargetedDistribution)


TargetedDistributionSTI::TargetedDistributionSTI( NChooserObjectFactory* pObjectFactory )
: TargetedDistribution( pObjectFactory )
, m_StartYear(1900.0)
Expand Down Expand Up @@ -118,7 +117,6 @@ namespace Kernel
// ------------------------------------------------------------------------

IMPLEMENT_FACTORY_REGISTERED(NChooserEventCoordinatorSTI)
IMPL_QUERY_INTERFACE2(NChooserEventCoordinatorSTI, IEventCoordinator, IConfigurable)

NChooserEventCoordinatorSTI::NChooserEventCoordinatorSTI()
: NChooserEventCoordinator( new NChooserObjectFactorySTI() )
Expand Down
2 changes: 0 additions & 2 deletions Eradication/NChooserEventCoordinatorSTI.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,6 @@ namespace Kernel
{
DECLARE_FACTORY_REGISTERED_EXPORT(EventCoordinatorFactory, NChooserEventCoordinatorSTI, IEventCoordinator)
public:
DECLARE_QUERY_INTERFACE()

NChooserEventCoordinatorSTI();
NChooserEventCoordinatorSTI( NChooserObjectFactory* pObjectFactory );
virtual ~NChooserEventCoordinatorSTI();
Expand Down
1 change: 0 additions & 1 deletion Eradication/NodeSTI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ namespace Kernel

BEGIN_QUERY_INTERFACE_DERIVED(NodeSTI, Node)
HANDLE_INTERFACE(INodeSTI)
HANDLE_INTERFACE(IConfigurable)
END_QUERY_INTERFACE_DERIVED(NodeSTI, Node)

bool NodeSTI::Configure( const Configuration* config )
Expand Down
3 changes: 2 additions & 1 deletion Eradication/ReferenceTrackingEventCoordinator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ SETUP_LOGGING( "ReferenceTrackingEventCoordinator" )
namespace Kernel
{
IMPLEMENT_FACTORY_REGISTERED(ReferenceTrackingEventCoordinator)
IMPL_QUERY_INTERFACE2(ReferenceTrackingEventCoordinator, IEventCoordinator, IConfigurable)
BEGIN_QUERY_INTERFACE_BODY(ReferenceTrackingEventCoordinator)
END_QUERY_INTERFACE_BODY(ReferenceTrackingEventCoordinator)

ReferenceTrackingEventCoordinator::ReferenceTrackingEventCoordinator()
: StandardInterventionDistributionEventCoordinator( false )//false=don't use standard demographic coverage
Expand Down
3 changes: 2 additions & 1 deletion Eradication/ReferenceTrackingEventCoordinatorHIV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ SETUP_LOGGING( "ReferenceTrackingEventCoordinatorHIV" )
namespace Kernel
{
IMPLEMENT_FACTORY_REGISTERED(ReferenceTrackingEventCoordinatorHIV)
IMPL_QUERY_INTERFACE2(ReferenceTrackingEventCoordinatorHIV, IEventCoordinator, IConfigurable)
BEGIN_QUERY_INTERFACE_BODY(ReferenceTrackingEventCoordinatorHIV)
END_QUERY_INTERFACE_BODY(ReferenceTrackingEventCoordinatorHIV)

ReferenceTrackingEventCoordinatorHIV::ReferenceTrackingEventCoordinatorHIV()
: ReferenceTrackingEventCoordinator()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ SETUP_LOGGING( "ReferenceTrackingEventCoordinatorTrackingConfig" )
namespace Kernel
{
IMPLEMENT_FACTORY_REGISTERED(ReferenceTrackingEventCoordinatorTrackingConfig)
IMPL_QUERY_INTERFACE2(ReferenceTrackingEventCoordinatorTrackingConfig, IEventCoordinator, IConfigurable)
BEGIN_QUERY_INTERFACE_BODY(ReferenceTrackingEventCoordinatorTrackingConfig)
END_QUERY_INTERFACE_BODY(ReferenceTrackingEventCoordinatorTrackingConfig)

ReferenceTrackingEventCoordinatorTrackingConfig::ReferenceTrackingEventCoordinatorTrackingConfig()
: StandardInterventionDistributionEventCoordinator( false )//false=don't use standard demographic coverage
Expand Down
1 change: 0 additions & 1 deletion Eradication/SimulationConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,6 @@ support_spec_map_t& SimulationConfigFactory::getRegisteredClasses()
IMPLEMENT_FACTORY_REGISTERED(SimulationConfig)

BEGIN_QUERY_INTERFACE_BODY(SimulationConfig)
HANDLE_INTERFACE(IConfigurable)
END_QUERY_INTERFACE_BODY(SimulationConfig)

SimulationConfig::~SimulationConfig()
Expand Down
1 change: 0 additions & 1 deletion Eradication/SpatialReportMalaria.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ GET_SCHEMA_STATIC_WRAPPER_IMPL(SpatialReportMalaria,SpatialReportMalaria)

BEGIN_QUERY_INTERFACE_BODY( SpatialReportMalaria )
HANDLE_INTERFACE( IReportMalariaDiagnostics )
HANDLE_INTERFACE( IConfigurable )
HANDLE_INTERFACE( IReport )
HANDLE_ISUPPORTS_VIA( IReport )
END_QUERY_INTERFACE_BODY( SpatialReportMalaria )
Expand Down
Loading