WPILibC++  2019.2.1-4-g05d6660
 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/Twine.h>
11 
12 namespace frc {
13 
21 class LayoutType {
22  public:
23  explicit LayoutType(const char* layoutName) : m_layoutName(layoutName) {}
24  ~LayoutType() = default;
25 
31 
32  private:
33  wpi::StringRef m_layoutName;
34 };
35 
36 } // 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