WPILibC++  2019.2.1-27-gd55ca19
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
LayoutType.h
1 /*----------------------------------------------------------------------------*/
2 /* Copyright (c) 2018 FIRST. All Rights Reserved. */
3 /* Open Source Software - may be modified and shared by FRC teams. The code */
4 /* must be accompanied by the FIRST BSD license file in the root directory of */
5 /* the project. */
6 /*----------------------------------------------------------------------------*/
7 
8 #pragma once
9 
10 #include <wpi/StringRef.h>
11 
12 namespace frc {
13 
21 class LayoutType {
22  public:
23  explicit constexpr LayoutType(const char* layoutName)
24  : m_layoutName(layoutName) {}
25  ~LayoutType() = default;
26 
32 
33  private:
34  const char* m_layoutName;
35 };
36 
37 } // namespace frc
WPILib FRC namespace.
Definition: SPIAccelerometerSim.h:18
Represents the type of a layout in Shuffleboard.
Definition: LayoutType.h:21
wpi::StringRef GetLayoutName() const
Gets the string type of the layout as defined by that layout in Shuffleboard.
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:49