~ubuntu-branches/debian/sid/librecad/sid

« back to all changes in this revision

Viewing changes to src/actions/rs_actionselectsingle.h

  • Committer: Package Import Robot
  • Author(s): Scott Howard
  • Date: 2011-12-17 20:08:57 UTC
  • mfrom: (0.2.4)
  • Revision ID: package-import@ubuntu.com-20111217200857-r9wmynaloj230qm1
Tags: 1.0.0+nolibs-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#define RS_ACTIONSELECTSINGLE_H
29
29
 
30
30
#include "rs_actioninterface.h"
 
31
#include "rs_actionselect.h"
31
32
 
32
33
 
33
34
/**
39
40
        Q_OBJECT
40
41
public:
41
42
    RS_ActionSelectSingle(RS_EntityContainer& container,
42
 
                          RS_GraphicView& graphicView);
 
43
                          RS_GraphicView& graphicView,RS_ActionSelect* actionSelect=NULL);
43
44
    ~RS_ActionSelectSingle() {}
44
45
 
45
46
        static QAction* createGUIAction(RS2::ActionType /*type*/, QObject* /*parent*/);
55
56
 
56
57
private:
57
58
    RS_Entity* en;
 
59
    RS_ActionSelect* actionSelect;
58
60
};
59
61
 
60
62
#endif