add common/adc_valholder.h header:

new conception: 1) no validator
                  2) AdcSerializingValueHolder is now non-templated
                     class
This commit is contained in:
Timur A. Fatkhullin
2024-05-12 01:54:32 +03:00
parent 070922e5d5
commit 6d28bf7747
3 changed files with 650 additions and 7 deletions

View File

@@ -10,7 +10,8 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(ADC_COMMON_HEADERS
common/adc_traits.h
common/adc_value_holder.h
common/adc_value.h)
common/adc_value.h
common/adc_valholder.h)
set(ADC_DEVICE_HEADERS
device/adc_device_attribute.h
@@ -26,7 +27,7 @@ if (BUILD_TESTS)
add_executable(${VALUEHOLDER_TEST_APP} tests/adc_valueholder_test.cpp)
set(DEVATTR_TEST_APP adc_devattr_test)
add_executable(${DEVATTR_TEST_APP} tests/adc_devattr_test.cpp)
# add_executable(${DEVATTR_TEST_APP} tests/adc_devattr_test.cpp)
if (NOT doctest_FOUND)
include(FetchContent)