26 lines
414 B
C++
26 lines
414 B
C++
/*!\file
|
||
* \brief \todo Описание файла.
|
||
*/
|
||
/*
|
||
* AppId.h
|
||
*
|
||
* Created on: 24 июн. 2019 г.
|
||
* Author: titov
|
||
*/
|
||
|
||
#ifndef SOURCE_APPLICATION_SOFTWARE_APPID_H_
|
||
#define SOURCE_APPLICATION_SOFTWARE_APPID_H_
|
||
|
||
#include <stdint.h>
|
||
|
||
namespace configuration { namespace software {
|
||
|
||
typedef uint16_t InitializerStepId;
|
||
typedef uint16_t CpuId;
|
||
|
||
}}
|
||
|
||
|
||
|
||
#endif /* SOURCE_APPLICATION_SOFTWARE_APPID_H_ */
|