Search found 117 matches

by marlowa
Tue Nov 03 2015 5:24 pm
Forum: User Support
Topic: bug: Mysterious DoxyPress aborted message
Replies: 5
Views: 17304

Re: bug: Mysterious DoxyPress aborted message

Thank you for submitting your issue. Can you submit a test case for us to review? Feel free to zip / tar a file and email to barbara@copperspice.com Thanks Yes, at long last, I can. Here it is: /** * my test class. */ class Myclass { public: /** @name Constructors * Type safe and safer than exposin...
by marlowa
Sun Nov 01 2015 8:38 pm
Forum: User Support
Topic: doxypress confused by RogueWave collectables
Replies: 2
Views: 11413

doxypress confused by RogueWave collectables

Here is a small simple class that makes doxypress fall over: class Myclass : public RWCollectable { public: RWDECLARE_COLLECTABLE(Myclass) }; The error doxypress gives is: Parse input files Assertion failed! Program: C:\Program Files\DoxyPress\doxypress.exe File: ../src/doxy_work.cpp, Line 9380 Expr...
by marlowa
Tue Oct 27 2015 2:59 pm
Forum: User Support
Topic: bug: Mysterious DoxyPress aborted message
Replies: 5
Views: 17304

bug: Mysterious DoxyPress aborted message

My run of doxypress is aborting for no apparant reason. At first I thought it was due to a large number of warnings, perhaps passing some threshold. But then I turned warnings off and still got the error. When quiet it turned on it is extremely quiet - it sits there for a while and then simply says ...
by marlowa
Tue Oct 27 2015 2:17 pm
Forum: User Support
Topic: bug: doxypress confused by friend class declarations
Replies: 2
Views: 12044

bug: doxypress confused by friend class declarations

I am seeing this warning:
Warning: Return types do not agree for member: MyFriendClass
return type: friend class return type:
when it sees the following header file line from MyClass.h:
friend class MyFriendClass;

I think this is doxypress not handling friend declarations properly.
by marlowa
Tue Oct 27 2015 1:51 pm
Forum: User Support
Topic: bug: return type differing between cpp file and h file
Replies: 1
Views: 10497

bug: return type differing between cpp file and h file

I have a class with a function that returns an integer via a typedef that is scoped to that class, e.g.: MyTypeDef doSomething() in the header file and MyClass::MyTypedef MyClass::doSomething() in the cpp file. DoxyPress is complaining: Warning: no uniquely matching class member found for <headerFil...
by marlowa
Tue Oct 27 2015 9:34 am
Forum: User Support
Topic: handling of C++ comments trailing preprocessor directives
Replies: 1
Views: 10353

handling of C++ comments trailing preprocessor directives

I have found something with doxypress where it complains but compilers don't: Warning: Reached end of file while still inside a (nested) comment. Nesting level 2 (probable line reference: ) I am getting these warnings when it parses code in include guards that end with: #endif // some comment or oth...
by marlowa
Sun Oct 25 2015 3:04 pm
Forum: Developers
Topic: CopperSpice and embedded applications
Replies: 1
Views: 10285

CopperSpice and embedded applications

Hello everyone, I cannot decide which C++ GUI application framework to pick to learn. There are just so many. And then as a contractor I found myself working in an embedded environment where Qt was being used. I had come across Qt before but was put off, as many are, by moc. But the chance to learn ...