schema_editor/comdel/domain/comdel_generator.h

17 lines
353 B
C
Raw Normal View History

#ifndef COMDEL_GENERATOR_H
#define COMDEL_GENERATOR_H
#include <sstream>
#include "schema.h"
#include "library.h"
namespace domain {
2022-05-27 06:18:17 +00:00
void generate_schema(std::string &librarySource, Schema *schema, std::ostream &buffer);
2022-05-27 06:18:17 +00:00
void generate_comdel(Schema *schema, Library &library, std::ostream &buffer);
} // domain
#endif //COMDEL_GENERATOR_H