Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sot-dynamic-pinocchio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
sot-dynamic-pinocchio
Merge requests
!6
Dev [Major][cpp] change m_data to dynamic, fix #ifndef
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Dev [Major][cpp] change m_data to dynamic, fix #ifndef
thomasfla:dev
into
dev
Overview
0
Commits
3
Pipelines
0
Changes
3
Merged
Guilhem Saurel
requested to merge
thomasfla:dev
into
dev
9 years ago
Overview
0
Commits
3
Pipelines
0
Changes
3
Expand
Created by: thomasfla
0
0
Merge request reports
Compare
dev
dev (base)
and
latest version
latest version
f769591f
3 commits,
6 years ago
3 files
+
20
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
include/sot-dynamic-pinocchio/dynamic.h
+
7
−
6
Options
#ifndef __SOT_DYNAMIC_
H__
#define __SOT_DYNAMIC_
H__
#ifndef __SOT_DYNAMIC_
PINOCCHIO_H
#define __SOT_DYNAMIC_
PINOCCHIO_H
/* --------------------------------------------------------------------- */
/* --- INCLUDE --------------------------------------------------------- */
@@ -56,10 +56,11 @@ public: /* --- CONSTRUCTION --- */
public:
/* --- ACCESSORS --- */
void
setUrdfPath
(
const
std
::
string
&
path
);
public:
/* --- ATRIBUTES --- */
se3
::
Model
m_model
;
se3
::
Data
m_data
;
se3
::
Model
m_model
;
se3
::
Data
*
m_data
;
std
::
string
m_urdfPath
;
};
}
/* namespace sot */
}
/* namespace dynamicgraph */
#endif // #ifndef __SOT_DYNAMIC_
H__
#endif // #ifndef __SOT_DYNAMIC_
PINOCCHIO_H
Loading