17 lines
351 B
C++
17 lines
351 B
C++
#ifndef COMDEL_GENERATOR_H
|
|
#define COMDEL_GENERATOR_H
|
|
|
|
#include <sstream>
|
|
#include "schema.h"
|
|
#include "library.h"
|
|
|
|
namespace domain {
|
|
|
|
void generateSchemaFile(std::string& librarySource, Schema *schema, std::ostream &buffer);
|
|
|
|
void generateComdelFile(Schema *schema, Library &library, std::ostream &buffer);
|
|
|
|
} // domain
|
|
|
|
#endif //COMDEL_GENERATOR_H
|