/
tisit
/
OpenPLC_v3
Обзор
Документация
Войти
/
tisit
/
OpenPLC_v3
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
utils/dnp3_src/cpp/libs/src/opendnp3/objects/Group3.h
68 строк
2 KB
thiagoralves
First commit. OpenPLC v3 beta 1
14 июн 2018, 20:43
14 июн 2018, 20:43
1b10e97
Код
Авторство
О чём код?
// // _ _ ______ _ _ _ _ _ _ _ // | \ | | | ____| | (_) | (_) | | | | // | \| | ___ | |__ __| |_| |_ _ _ __ __ _| | | | // | . ` |/ _ \ | __| / _` | | __| | '_ \ / _` | | | | // | |\ | (_) | | |___| (_| | | |_| | | | | (_| |_|_|_| // |_| \_|\___/ |______\__,_|_|\__|_|_| |_|\__, (_|_|_) // __/ | // |___/ // // This file is auto-generated. Do not edit manually // // Copyright 2013 Automatak LLC // // Automatak LLC (www.automatak.com) licenses this file // to you under the the Apache License Version 2.0 (the "License"): // // http://www.apache.org/licenses/LICENSE-2.0.html // #ifndef OPENDNP3_GROUP3_H #define OPENDNP3_GROUP3_H #include "opendnp3/app/GroupVariationID.h" #include <openpal/container/RSlice.h> #include <openpal/container/WSlice.h> #include "opendnp3/app/DNPTime.h" #include "opendnp3/app/DNP3Serializer.h" #include "opendnp3/app/MeasurementTypeSpecs.h" namespace opendnp3 { // Double-bit Binary Input - Any Variation struct Group3Var0 { static GroupVariationID ID() { return GroupVariationID(3,0); } }; // Double-bit Binary Input - Packed Format struct Group3Var1 { static GroupVariationID ID() { return GroupVariationID(3,1); } }; // Double-bit Binary Input - With Flags struct Group3Var2 { static GroupVariationID ID() { return GroupVariationID(3,2); } Group3Var2(); static uint32_t Size() { return 1; } static bool Read(openpal::RSlice&, Group3Var2&); static bool Write(const Group3Var2&, openpal::WSlice&); uint8_t flags; typedef DoubleBitBinary Target; typedef DoubleBitBinarySpec Spec; static bool ReadTarget(openpal::RSlice&, DoubleBitBinary&); static bool WriteTarget(const DoubleBitBinary&, openpal::WSlice&); static DNP3Serializer<DoubleBitBinary> Inst() { return DNP3Serializer<DoubleBitBinary>(ID(), Size(), &ReadTarget, &WriteTarget); } }; } #endif