1
0
Fork 0

mark some class headers as public

This commit is contained in:
Kevin Matz 2022-11-28 11:37:10 -05:00
parent a81bc5b1fd
commit a74bd32598
3 changed files with 10 additions and 7 deletions

View File

@ -1,6 +1,7 @@
target_sources(${PROJECT_NAME} target_sources(${PROJECT_NAME}
PRIVATE PUBLIC
acn/component.h acn/component.h
PRIVATE
acn/pdu-stream.cpp acn/pdu-stream.cpp
acn/pdu-stream.h acn/pdu-stream.h
acn/pdu.cpp acn/pdu.cpp

View File

@ -1,16 +1,17 @@
target_sources(${PROJECT_NAME} target_sources(${PROJECT_NAME}
PUBLIC
artnet/controller.h
artnet/device.h
artnet/node.h
artnet/universe.h
PRIVATE PRIVATE
artnet/artnet.h artnet/artnet.h
artnet/controller.h
artnet/controller.cpp artnet/controller.cpp
artnet/device.h
artnet/device.cpp artnet/device.cpp
artnet/node.h
artnet/node.cpp artnet/node.cpp
artnet/packet.h artnet/packet.h
artnet/packet.cpp artnet/packet.cpp
artnet/port.h artnet/port.h
artnet/port.cpp artnet/port.cpp
artnet/universe.h
artnet/universe.cpp artnet/universe.cpp
) )

View File

@ -1,9 +1,10 @@
target_sources(${PROJECT_NAME} target_sources(${PROJECT_NAME}
PUBLIC
rpt/broker.h
rpt/controller.h
PRIVATE PRIVATE
rpt/broker.cpp rpt/broker.cpp
rpt/broker.h
rpt/controller.cpp rpt/controller.cpp
rpt/controller.h
rpt/device.cpp rpt/device.cpp
rpt/device.h rpt/device.h
rpt/rpt.cpp rpt/rpt.cpp