Skip to content
Snippets Groups Projects
Select Git revision
  • c9fb21a752d6e14ec07aa70f4c53cb26d4ce57d9
  • main default protected
  • Issue/3193-processingOfPersonalDataConsent
  • Issue/3082-visualizeFDOs
  • dev protected
  • Issue/3203-brokenCoscineSurfacePage
  • Issue/3192-gitlabTokenUpdateNotPossible
  • Issue/3175-uiQuotaSettingAndDisplayBug
  • Issue/3090-tosProblems
  • Issue/3178-iconColorBug
  • Issue/3176-addNewNFDI4INGLogo
  • Issue/3141-rdsNoLonga
  • Issue/3180-fixMetadataNotLoading
  • Issue/3177-resourceTypeDescriptionTexts
  • Issue/3160-deactivateDownloadForFolders
  • Issue/3111-fixLoadingGitLabResource
  • Issue/3133-subProjectsChanges
  • Issue/3139-dsnrw
  • Issue/3167-changeTextAndAddLink
  • Issue/3070-newIconsForResourceTypes
  • Issue/3145-redesignLoginPage
  • v3.20.0
  • v3.19.2
  • v3.19.1
  • v3.19.0
  • v3.18.0
  • v3.17.2
  • v3.17.1
  • v3.17.0
  • v3.16.1
  • v3.16.0
  • v3.15.6
  • v3.15.5
  • v3.15.4
  • v3.15.3
  • v3.15.2
  • v3.15.1
  • v3.15.0
  • v3.14.0
  • v3.13.1
  • v3.13.0
41 results

admin.ts

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    VAMatlabConnection.h 1.03 KiB
    /*
     *  --------------------------------------------------------------------------------------------
     *
     *    VVV        VVV A           Virtual Acoustics (VA) | http://www.virtualacoustics.org
     *     VVV      VVV AAA          Licensed under the Apache License, Version 2.0
     *      VVV    VVV   AAA
     *       VVV  VVV     AAA        Copyright 2015-2017
     *        VVVVVV       AAA       Institute of Technical Acoustics (ITA)
     *         VVVV         AAA      RWTH Aachen University
     *
     *  --------------------------------------------------------------------------------------------
     */
    
    #ifndef IW_VA_MATLAB_CONNECTION
    #define IW_VA_MATLAB_CONNECTION
    
    // STL includes
    #include <string>
    #include <vector>
    
    class IVAInterface;
    class CVAMatlabTracker;
    class IVANetClient;
    
    //! Connection data class
    class CVAMatlabConnection
    {
    public:
    	IVANetClient* pClient;
    	IVAInterface* pCoreInterface;
    	CVAMatlabTracker* pVAMatlabTracker;
    
    	CVAMatlabConnection();
    	~CVAMatlabConnection();
    
    	bool IsConnected() const;
    };
    
    #endif // INCLUDE_WATCHER_VA_MATLAB_CONNECTION