File size: 543 Bytes
f5bb0c0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef OPENPOSE_TUTORIAL_USER_DATUM_HPP
#define OPENPOSE_TUTORIAL_USER_DATUM_HPP

#include <openpose/core/datum.hpp>
#include <openpose/core/common.hpp>

namespace op
{
    // If the user needs his own variables to be shared across Worker classes, he can directly add them here.
    struct UserDatum : public Datum
    {
        /**
         * Description of your variable.
         */
        bool boolThatUserNeedsForSomeReason;

        UserDatum() {};

        virtual ~UserDatum(){};
    };
}

#endif // OPENPOSE_TUTORIAL_USER_DATUM_HPP