|
Class EXAMPLE{ public func1() private func2() func3() }
I have checked for documented entities only. I have documentation for func1 and func3 but no documentation for func2. I have
EXTRACT_ALL = NO EXTRACT_PRIVATE = NO EXTRACT_STATIC = NO EXTRACT_LOCAL...
Started by ashishsagarwal on
, 4 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you only want to include documented....
And I don't want it display in the list of documentation.
Thanks for the quickest response is not documented at all.
Instructs Doxygen to ignore the private even if they are documented.
|
|
Apple submission app aproves when we add UIView inside non-documented UIViews? I mean,
// search for non-documented subview... UIView *nv = ... //non-documented view; [nv addSubview:myNormalView];
Is that ok to Apple?
Thanks. Hami
Started by Hamiseixas on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If by non documented you mean views or UI elements that are part of the SDK but are not documented.
|
|
What's your way to learn an open source project if the project is poorly documented?
Read source code?
Started by Benny on
, 13 posts
by 13 people.
Answer Snippets (Read the full thread at stackoverflow):
Also, some poorly documented....
I asked something similar some time ago of the entire system .
About their naming conventions, the classes often document themselves and you'll be able to see working with code that hasn't been documented.
|
Ask your Facebook Friends
|
It's at least common practice to treat null BSTR (null WCHAR* pointer) as an empty string and design all the code manipulating BSTRs accordingly. Answers to this question say the same.
Where is this practice documented? Is there any official document ...
Started by sharptooth on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In addition.
It's unfortunate that the page for BSTR in MSDN doesn't document this practice.
Answer.
|
|
Is it acceptable for an API to have bad behaviors (like segfault, bus error, memory leak) if the condition that would cause the bad behaviors is documented? Or should it always fail "gracefully" in all known conditions?
Answer Snippets (Read the full thread at stackoverflow):
Hopefully since it's documented it will get fixed at some as memory leaks, the best you can hope for is to document really well the ownership protocol.
Of the crash scenario is known and documented.
|
|
I am looking at bunch of syslog messages written by dhcpd. I want to write a quick parser that can deconstruct the message into its component parts, but I don't know what the various parts mean. I assume this is documented somewhere, but my simple queries...
Started by Chas. Owens on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Dhcpd is pretty sparsely documented in general - I've never seen docs on the logging format.
|
|
I need to monitor and, if it is needed, decline process start in the Windows XP and Vista OS? What are known/documented/undocmented methods? What about known hacks of this methods?
(It will be used for the shareware firewall/security software).
Started by Omega on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are on Pro/Biz/Ent/Ultimate editions group policy can be used to block specified executables from being launched, or limit to a specified... .
There is no [1] method to decide whether to allow the start or not .
For monitoring you can use WMI events.
|
|
Hi,
I wanted to know if anyone has worked out how to disable the "Public property 'Foo' is not documented" code inspection in Resharper 4.5
I find this really annoying and would really like to disable it on the R# level
Thanks Amar
Started by amarsuperstar on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
In the project properties, on the Build tab there is a box named "Suppress... .
It's not a ReSharper warning - it's a Visual Studio one .
You can then tell Resharper how (and if) to alert you .
Click on the red bulb, and select "Inspection options for ..." .
|
|
We are about to redesign our calculation engine, and want each step in the calculation to be traceable/documented so that the user can get a complete report on what amounts make up each total.
Are there any patterns or good examples on how to implement...
Started by Vegar on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You build the expression you wish to calculate as a tree of operators and operands:
class Node;
class operator : public node ... .
Yes, log the intermediate steps in the calculation as though you were submitting your work to a fussy mathematics professor .
|
|
I consider going with Objective-J, instead writing plain JavaScript. But I wonder if the documentation of the language and the frameworks is good enough, since it seems like a very young development.
Started by openfrog on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The only docs & howtos I can find are in the official... .
Documentations are lacking at this moment I think but the mailing list is active.
One thing for sure, it is intended for web "apps" instead of web "sites" .
Been trying it for future development.
|