Packages
fit_decoder
0.1.0
A high-performance Elixir library for decoding Garmin .fit files using a C++ NIF.
Current section
Files
Jump to
Current section
Files
c_src/fit_sdk/cpp/fit_pad_mesg.hpp
/////////////////////////////////////////////////////////////////////////////////////////////
// Copyright 2025 Garmin International, Inc.
// Licensed under the Flexible and Interoperable Data Transfer (FIT) Protocol License; you
// may not use this file except in compliance with the Flexible and Interoperable Data
// Transfer (FIT) Protocol License.
/////////////////////////////////////////////////////////////////////////////////////////////
// ****WARNING**** This file is auto-generated! Do NOT edit this file.
// Profile Version = 21.171.0Release
// Tag = production/release/21.171.0-0-g57fed75
/////////////////////////////////////////////////////////////////////////////////////////////
#if !defined(FIT_PAD_MESG_HPP)
#define FIT_PAD_MESG_HPP
#include "fit_mesg.hpp"
namespace fit
{
class PadMesg : public Mesg
{
public:
class FieldDefNum final
{
public:
static const FIT_UINT8 Invalid = FIT_FIELD_NUM_INVALID;
};
PadMesg(void) : Mesg(Profile::MESG_PAD)
{
}
PadMesg(const Mesg &mesg) : Mesg(mesg)
{
}
};
} // namespace fit
#endif // !defined(FIT_PAD_MESG_HPP)