mirror of
https://github.com/gosticks/openpose.git
synced 2026-08-12 04:10:28 +00:00
24 lines
544 B
C++
24 lines
544 B
C++
#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 accross 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
|