Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • 79dc1b74ff91a78c64855ea8c87ded403bbd1f44
  • master default protected
  • gitkeep
  • dev protected
  • Issue/2464-invalidateMeta
  • Issue/2309-docs
  • Issue/2462-removeTraces
  • Hotfix/2459-EncodingPath
  • Hotfix/2452-linkedDeletion
  • Issue/1792-newMetadataStructure
  • Hotfix/2371-fixGitLabinRCV
  • Fix/xxxx-activateGitlab
  • Issue/2349-gitlabHttps
  • Issue/2287-guestRole
  • Issue/2102-gitLabResTypeRCV
  • Hotfix/2254-fixContentLenghtCalculation
  • Fix/xxxx-resourceVisibility
  • Issue/1951-quotaImplementation
  • Issue/2162-fixFolderResponse
  • Issue/2158-emailServicedesk
  • Hotfix/2141-fileUploadErrors
  • v3.3.4
  • v3.3.3
  • v3.3.2
  • v3.3.1
  • v3.3.0
  • v3.2.3
  • v3.2.2
  • v3.2.1
  • v3.2.0
  • v3.1.2
  • v3.1.1
  • v3.1.0
  • v3.0.6
  • v3.0.5
  • v3.0.4
  • v3.0.3
  • v3.0.2
  • v3.0.1
  • v3.0.0
  • v2.8.2
41 results

App.config

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    InteractionTool.h 454 B
    #include "Picture.h"
    #include "ManipulationTool.h"
    
    #ifndef INTERACTION_TOOL_H
    #define INTERACTION_TOOL_H
    
    /*!
     * \class InteractionTool
     * \brief Koordiniert die Verwendung von Picture und ManipulationTool.
     */
    class InteractionTool{
    	public:
            bool useTool(toolParameters_t* param);
            Picture* getPicture();
            InteractionTool();
    		
    	private:
            Picture *pic;
            ManipulationTool *tools;
    };
    
    #endif /* !INTERACTION_TOOL_H */