/******************************************************************** ** Copyright (c) 2018-2020 Guan Wenliang ** This file is part of the Berry default interpreter. ** skiars@qq.com, https://github.com/Skiars/berry ** See Copyright Notice in the LICENSE file or at ** https://github.com/Skiars/berry/blob/master/LICENSE ********************************************************************/ #ifndef __OBJECT_BLOCK_H #define __OBJECT_BLOCK_H #include #include struct object_block { struct data_value { std::string value; std::string depend; }; std::string type; std::string name; std::map attr; std::map data; }; #endif