BlockBuilder.h 138 B

12345678910
  1. #ifndef BLOCKBUILDER_H
  2. #define BLOCKBUILDER_H
  3. class BlockBuilder final {
  4. public:
  5. BlockBuilder();
  6. BlockBuilder& test();
  7. };
  8. #endif