2022-05-08 22:51:47 +00:00
|
|
|
#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-08 22:51:47 +00:00
|
|
|
|
2022-05-27 06:18:17 +00:00
|
|
|
void generate_comdel(Schema *schema, Library &library, std::ostream &buffer);
|
2022-05-08 22:51:47 +00:00
|
|
|
|
|
|
|
} // domain
|
|
|
|
|
|
|
|
#endif //COMDEL_GENERATOR_H
|