Choreonoid  1.5
PoseSeqView.h
Go to the documentation of this file.
1 
6 #ifndef CNOID_CHOREOGRAPHY_BODY_POSE_SEQ_VIEW_H_INCLUDED
7 #define CNOID_CHOREOGRAPHY_BODY_POSE_SEQ_VIEW_H_INCLUDED
8 
9 #include <cnoid/View>
10 
11 namespace cnoid {
12 
13 class Archive;
14 class ExtensionManager;
15 class PoseSeqViewImpl;
16 
17 class PoseSeqView : public cnoid::View
18 {
19 public:
21  ~PoseSeqView();
22 
23 private:
24  PoseSeqViewImpl* impl;
25 
26  virtual bool storeState(Archive& archive);
27  virtual bool restoreState(const Archive& archive);
28 };
29 }
30 
31 #endif
Definition: Archive.h:21
Definition: ExtensionManager.h:26
Defines the minimum processing for performing pasing file for STL.
Definition: AbstractSceneLoader.h:9
Definition: PoseSeqView.h:17
PoseSeqView(ExtensionManager &ext)
Definition: PoseSeqView.cpp:159
Definition: View.h:28
~PoseSeqView()
Definition: PoseSeqView.cpp:350