合并两个文本文件的库

发布于 2024-12-09 18:42:02 字数 165 浏览 1 评论 0 原文

我正在从 XLS 编写 C++ 代码生成实用程序(编译器),以将设计决策直接带入游戏代码中。生成的类可以在生成后手动更改,因此在编译之后生成的文件必须与以前的文件合并。合并它们的最佳方法是什么?使用一些合并库或调用外部命令?

用 C++ 编写的编译器,适用于 Windows。

谢谢。

I am writing C++ code generation utility (compiler) from XLS to bring design decisions right into the game code. Generated classes can be changed manually after generation, so after following compilations generated files have to be merged with previous ones. What is the best way to merge them? Use some merging library or call external command?

Compiler written in C++, for Windows.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

写下不归期 2024-12-16 18:42:02

我会使用一些合并实用程序从编译器外部手动进行合并,例如 svn merge (这里有一个命令行版本,也许你可以自动执行此操作,但我不会这样做..),或 BeyondCompare

自动合并可能非常危险恕我直言,想想如果存在冲突,合并应该自动做什么?

I would do the merging outside from the compiler by hand using some merge utility like svn merge (a commandline version exists here, perhaps you can automate this, but I wouldn't do this..), or BeyondCompare

Automatic merging can be very dangerous IMHO and think about what should the merger do automatically if there are conflicts?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文