mirror of
https://github.com/nasa/fpp.git
synced 2025-12-14 01:11:35 -06:00
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
// ======================================================================
|
|
// \title FppConstants.cpp
|
|
// \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.
|
|
// ======================================================================
|
|
|
|
#include "FppConstants.hpp"
|
|
|
|
const F64 b = 1.0;
|
|
|
|
const bool c = true;
|
|
|
|
const char *const d = "abc";
|
|
|
|
namespace M {
|
|
|
|
const F64 b = 1.0;
|
|
|
|
const bool c = true;
|
|
|
|
const char *const d = "abc";
|
|
|
|
}
|