26 lines
397 B
C++
26 lines
397 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_ */
|