Kevin

3,866
Reputation
165 views

Registered User

Name Kevin
Member for 1 year
Seen Jun 10 at 18:28
Website
Location Spokane
Age 34
Nov
24
awarded  Nice Answer
Oct
22
awarded  Notable Question
Oct
15
awarded  Popular Question
Oct
2
awarded  Enlightened
Sep
16
awarded  Yearling
Sep
11
awarded  Taxonomist
Aug
16
accepted Daily Build vs. Zero Defect
Aug
11
accepted Design of Assertion Checking System
Aug
10
accepted Computing pseudo-inverse of a matrix in C++
Aug
6
awarded  Popular Question
Jun
17
awarded  Nice Question
Jun
8
comment Good application (not code) documentation tools outputting HTML Help files?
Ahh... I just found an open source WYSIWYG editor that exports to DocBook. It's called Lyx (en.wikipedia.org/wiki/LyX). I'm going to give this a try.
Jun
8
comment Good application (not code) documentation tools outputting HTML Help files?
Wow. DocBook is a standard and very flexible format -- able to be transformed into all sorts of other documents. That's good. The other nice thing is that there are multiple editors out there -- that's also good; in case one editor stagnates (or it's vendor goes out of buisness), you can always pick another. As far as WYSIWYG editors for DocBook go though, I've only found closed-source editors. Serna XML Editor offers a decent free version for non-corporate use. The professional version is still a little pricey ($559/seat on sale). Does anyone know of a free WYSIWYG DocBook editor?
Jun
8
comment Good application (not code) documentation tools outputting HTML Help files?
Help & Manual looks very promising. I've got 2 weeks to evaluate it, so I'll take a look. Thanks.
Jun
7
comment Calling virtual functions inside constructors
I wish I could upvote this 100 times. Doing such things usually indicates flawed design.
Jun
7
asked Good application (not code) documentation tools outputting HTML Help files?
Jun
7
awarded  Nice Answer
Jun
5
comment Can smart pointers selectively hide or re-direct function calls to the objects they are wrapping?
No, this doesn't work as I had hoped. If pA->Release() is uncommented, there is no assertion. The idea was to "redirect" the call to Release().
Jun
5
comment Can smart pointers selectively hide or re-direct function calls to the objects they are wrapping?
This is my long-term goal. Right now though, we have a lot of legacy code from before the smart pointers were introduced. Unfortunately, we're facing a looming deadline, and I can't implement this solution until some time in the future -- hopefully not some indefinite future.
Jun
5
asked Can smart pointers selectively hide or re-direct function calls to the objects they are wrapping?