~choreonoid/choreonoid/debian

« back to all changes in this revision

Viewing changes to src/Base/ItemPropertyView.h

  • Committer: Thomas Moulard
  • Date: 2012-10-23 12:43:24 UTC
  • Revision ID: git-v1:351cf736ad49bc7a9a7b9767dee760a013517a5d
Tags: upstream/1.1.0
ImportedĀ UpstreamĀ versionĀ 1.1.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
   @author Shin'ichiro Nakaoka
 
3
*/
 
4
 
 
5
#ifndef CNOID_GUIBASE_ITEM_PROPERTY_VIEW_H_INCLUDED
 
6
#define CNOID_GUIBASE_ITEM_PROPERTY_VIEW_H_INCLUDED
 
7
 
 
8
#include <cnoid/View>
 
9
 
 
10
namespace cnoid {
 
11
 
 
12
    class ItemPropertyViewImpl;
 
13
 
 
14
    class ItemPropertyView : public View
 
15
    {
 
16
      public:
 
17
        static void initialize(ExtensionManager* ext);
 
18
        
 
19
        ItemPropertyView();
 
20
        ~ItemPropertyView();
 
21
 
 
22
      private:
 
23
        ItemPropertyViewImpl* impl;
 
24
    };
 
25
 
 
26
}
 
27
 
 
28
#endif