Re: [Doxygen-users] @ Symbol

2013-07-16 Thread Aaron Montgomery
I believe the setting is something close to INPUT_FILTER. This can specify a script file, I tend to use sed, that will be run on each source file prior to passing the file to doxygen. In that file, you can have it substitute @ for * so that when the source file is: Image @ getImage( void ); do

Re: [Doxygen-users] @ Symbol

2013-07-16 Thread Aaron Montgomery
Not sure if it would work, but you could try a doxygen input filter that substituted "*" for "@". This might allow doxygen to correctly read the syntax (and treat the AngelScript @ as a C/C++ *). I'm not sure if the filter would make the documentation worthless for an AngleScript programmer (not

[Doxygen-users] @ Symbol

2013-07-16 Thread Markus Mönig
Hi, we are adding a PlugIn system based on AngelScript to our application and want to document it via doxygen. Problem is that AngelScript uses the @ symbol for object handles, i.e. Image@ getImage( void ); instead of * like in C / C++. Doxygen just seems to ignore the @ symbol in function de