On Sat, 2002-06-01 at 06:12, Panu H�llfors wrote: > I consider Velocity one of the best ways to produce dynamic > HTML content. However, I'm now in need of such a tool for C/C++. > > Do anyone of you know of a velocity-like tool/library for C++? > Any licence goes, but of course I'm most interested in open > source ones. I haven't found any myself. > > Supposing there's no implementations, how difficult a work > would you consider porting Velocity to C++, in case I decide > to go that way?
As far as the parser goes you might want to try something that might take a bit of organizational effort but save you some time in the long run: JavaCC is supposed to be going open source so you could potentially add a feature to JavaCC to output C++ code in addition to Java code. This is what Antlr does. Actually Antlr can, I believe, output Java, C++ and Sather! Doing this then at least you could share the grammar which is by far the hairiest part in Velocity. Would be fun to do as well! > Thanks, > > Panu > > -- > Panu H�llfors, [EMAIL PROTECTED]| CS Student, Helsinki University of Technology > http://www.iki.fi/panupa/ | Internet Application Developer, Viloke Oy > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- jvz. Jason van Zyl [EMAIL PROTECTED] http://tambora.zenplex.org -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
