Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • a63ae69a853dde1099eae4d2545986c26422e232
  • master default protected
  • xaml-ver
3 results

InteractionTool.h

Blame
  • user avatar
    passscod authored
    a63ae69a
    History
    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 */