Commit a7c18b01 authored by Sergio Poppi's avatar Sergio Poppi
Browse files

Added Mount proxy in component proxy library

parent 54e0c622
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -8,5 +8,6 @@
#include "AntennaProxy.h"        
#include "ManagementProxy.h"  
#include "ReceiversProxy.h"
#include "MountProxy.h"        

#endif
+13 −0
Original line number Diff line number Diff line
#ifndef MOUNTPROXY_H
#define MOUNTPROXY_H

#include <MountC.h>

#include "ComponentProxy.h"

namespace Antenna
{
    PROXY_COMPONENT(Mount);
};

#endif
+4 −1
Original line number Diff line number Diff line
@@ -44,6 +44,7 @@ compilation_test_LIBS = IRALibrary \
                              CommonReceiverInterfaceStubs \
                              bulkDataStubs bulkDataReceiverStubs \
                              bulkDataCallback bulkDataSenderStubs \
			      MountStubs \
                              ManagementErrors \
                              ComponentErrors \
                              AntennaErrors \
@@ -62,7 +63,9 @@ INCLUDES = ActiveSurfaceProxy.h \
                  AntennaProxy.h \
                  ComponentProxies  \
                  ManagementProxy.h  \
                  ReceiversProxy.h
                  ReceiversProxy.h \
		  MountProxy.h
		  


#
+2 −1
Original line number Diff line number Diff line
@@ -25,8 +25,9 @@ int main()
    MinorServo::WPServo_proxy m_wpServoProxy;
    Receivers::ReceiversBoss_proxy m_receiversBossProxy;
    Receivers::DewarPositioner_proxy m_dewarPositionerProxy;
    Receivers::LocalOscillator_proxy m_localOscillatorProxy;
    Receivers::LocalOscillator_proxy m_local_OscillatorProxy;
    Weather::GenericWeatherStation_proxy m_genericWeatherStationProxy;
    Antenna::Mount_proxy m_mount;
    return 0;
}