OdbDesignLib
OdbDesign ODB++ Parsing Library
RgbColor.h
1 #pragma once
2 
3 #include <string>
4 
5 namespace Odb::Lib::FileModel::Design
6 {
10  struct RgbColor
11  {
12  uint8_t red;
13  uint8_t green;
14  uint8_t blue;
15 
16  bool noPreference;
17 
18  RgbColor();
19  explicit RgbColor(const std::string& str);
20 
21  bool from_string(const std::string& str);
22  std::string to_string();
23  };
24 }