fpp/compiler/tools/fpp-to-cpp/test/FppConstants_constants_guard.ref.hpp
bocchino a9bbf058ab Fix test regressions
Remove dependency on copyright year
2021-01-08 10:19:11 -08:00

68 lines
1.4 KiB
C++

// ======================================================================
// \title FppConstants.hpp
// \author Generated by fpp-to-cpp
//
// \copyright
// Copyright (C) [year] California Institute of Technology.
// ALL RIGHTS RESERVED. United States Government Sponsorship
// acknowledged. Any commercial use must be negotiated with the Office
// of Technology Transfer at the California Institute of Technology.
//
// This software may be subject to U.S. export control laws and
// regulations. By accepting this document, the user agrees to comply
// with all U.S. export laws and regulations. User has the
// responsibility to obtain export licenses, or other export authority
// as may be required before exporting such information to foreign
// countries or providing access to foreign persons.
// ======================================================================
#ifndef GUARD_PREFIX_FppConstants_HPP
#define GUARD_PREFIX_FppConstants_HPP
#include "Fw/Types/BasicTypes.hpp"
//! Constant a
enum FppConstant_a {
a = 0
};
//! Constant b
extern const F64 b;
//! Constant c
extern const bool c;
//! Constant d
extern const char *const d;
//! Constant e
enum FppConstant_e {
e = 3
};
namespace M {
//! Constant a
enum FppConstant_a {
a = 0
};
//! Constant b
extern const F64 b;
//! Constant c
extern const bool c;
//! Constant d
extern const char *const d;
//! Constant e
enum FppConstant_e {
e = 3
};
}
#endif