Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.8)

project(BSDFXMLParser VERSION 0.0.3 LANGUAGES CXX)
project(BSDFXMLParser VERSION 0.0.4 LANGUAGES CXX)
set(LIB_NAME ${PROJECT_NAME})

if (MSVC)
Expand Down
6 changes: 5 additions & 1 deletion src/bsdfdata/Enumerators.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ namespace BSDFData
return FileParse::enumToString(type, WindowElementTypeStrings);
}

const std::array<std::string, 12> DeviceTypeStrings = {"Unknown",
const std::array<std::string, 16> DeviceTypeStrings = {"Unknown",
"Venetian blind horizontal",
"Venetian blind vertical",
"Woven shade",
Expand All @@ -30,7 +30,11 @@ namespace BSDFData
"Fritted Glass",
"Cellular Shade",
"Pleated Shade",
"Roman Shade",
"Roller Shutter",
"Insulated Quilts",
"Louvered Shutter",
"Awning",
"Solid Layer",
"Other"};

Expand Down
4 changes: 4 additions & 0 deletions src/bsdfdata/Enumerators.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ namespace BSDFData
FrittedGlass,
CellularShade,
PleatedShade,
RomanShade,
RollerShutter,
InsulatedQuilts,
LouveredShutter,
Awning,
SolidLayer,
Other
};
Expand Down
Loading