Choreonoid  1.5
LinkPropertyView.h
Go to the documentation of this file.
1 
5 #ifndef CNOID_BODY_PLUGIN_LINK_PROPERTY_VIEW_H
6 #define CNOID_BODY_PLUGIN_LINK_PROPERTY_VIEW_H
7 
8 #include <cnoid/View>
9 
10 namespace cnoid {
11 
12 class LinkPropertyViewImpl;
13 
14 class LinkPropertyView : public View
15 {
16 public:
17  static void initializeClass(ExtensionManager* ext);
18 
21 
22 protected:
23  void keyPressEvent(QKeyEvent* event);
24 
25 private:
26  LinkPropertyViewImpl* impl;
27 };
28 
29 }
30 
31 #endif
Definition: LinkPropertyView.h:14
Definition: ExtensionManager.h:26
~LinkPropertyView()
Definition: LinkPropertyView.cpp:111
void keyPressEvent(QKeyEvent *event)
Definition: LinkPropertyView.cpp:247
static void initializeClass(ExtensionManager *ext)
Definition: LinkPropertyView.cpp:52
Defines the minimum processing for performing pasing file for STL.
Definition: AbstractSceneLoader.h:9
LinkPropertyView()
Definition: LinkPropertyView.cpp:59
Definition: View.h:28