Structural deformable models
types_fwd.h
Go to the documentation of this file.
1 /* -*- C++ -*- */
2 #ifndef __TYPES_FWD_H__
3 #define __TYPES_FWD_H__
4 
9 #include <memory>
10 
11 class Model;
12 typedef std::shared_ptr<Model> model_ptr;
13 typedef std::shared_ptr<const Model> model_cptr;
14 
15 class Sensor;
16 typedef std::shared_ptr<Sensor> sensor_ptr;
17 typedef std::shared_ptr<const Sensor> sensor_cptr;
18 
19 class Dataset;
20 typedef std::shared_ptr<Dataset> dataset_ptr;
21 typedef std::shared_ptr<const Dataset> dataset_cptr;
22 
23 #endif
std::shared_ptr< Dataset > dataset_ptr
Definition: types_fwd.h:19
Definition: Sensor.h:21
std::shared_ptr< const Dataset > dataset_cptr
Definition: types_fwd.h:21
std::shared_ptr< Sensor > sensor_ptr
Definition: types_fwd.h:15
std::shared_ptr< const Model > model_cptr
Definition: types_fwd.h:13
std::shared_ptr< Model > model_ptr
Definition: types_fwd.h:11
Definition: Model.h:33
Definition: Data.h:21
std::shared_ptr< const Sensor > sensor_cptr
Definition: types_fwd.h:17