| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 3 years, 11 months |
| seen | 35 mins ago | |
| stats | profile views | 494 |
|
4h |
comment |
Inheritance C++ It would be much more clear if your question used the same class names as your diagram.. |
|
5h |
comment |
why this style is not working in wpf Maybe the empty ContentPresenter in the template? |
|
8h |
comment |
Why locking a std::mutex don't block the thread there's only one thread, why would it be useful to get it blocked? |
|
8h |
comment |
Deleted files are 'restored' when doing an update with TortoiseSVN Please note that this is not always how version control works. Git for example does not do this, nor does Mercurial and those are not exactly small players in the VCS field. The problem with the workflow above is that you cannot simply delete a file and test some upstream stuff, without modifying/committing anything in the history, which for some reason is something that i want to do often. |
|
8h |
comment |
How to export C++ class as a dll? possible duplicate of Exporting a C++ class from a DLL |
|
2d |
comment |
How to get data without corruption when void* is used? there's more like that :] avoid using raw pointers, avoid explcicit new/delete, use std::string not char* |
|
May 16 |
comment |
Accessing and chaging variables from different classes in c++ this is likely going to be closed for being way too broad - a couple of pointers though: this code basically violates all kinds of 'best practices' / patterns / whatever I.. Look them up, try to understand them and then rewrite your code.. |
|
May 16 |
comment |
Find and replace running in a never ending loop you should add some error handling - are you sure the call to CreateTextFile succeeds? To me it seems like that file is still open sine you opened it using OpenTextFile but I see no Close call.. |
|
May 16 |
comment |
How complex/easy can be a C++ class to be called by Matlab? What are the limitations? you can do anything the C++ compiler you use can do in a mex file; as for data types: afaik any datatype matlab handles can be passed, though I'm not sure how you would deal with matlab OOP classes. |
|
May 16 |
comment |
How complex/easy can be a C++ class to be called by Matlab? What are the limitations? indeed, mex is the way to go here |
|
May 16 |
comment |
The difference between max and fmax (Cross platform compiling) possible duplicate of Use of min and max functions in C++ |
|
May 16 |
reviewed | Approve suggested edit on nokia-maps tag wiki |
|
May 16 |
reviewed | Approve suggested edit on Conversion of V2 Ninject Binding to V3 |
|
May 16 |
reviewed | Reject suggested edit on nokia-maps tag wiki excerpt |
|
May 16 |
reviewed | Approve suggested edit on How to convert retina canvas to non-retina display |
|
May 16 |
reviewed | Approve suggested edit on SQL is it possible to combine group, count and distinct? |
|
May 16 |
reviewed | Approve suggested edit on File to byte[] in Java |
|
May 16 |
reviewed | Approve suggested edit on Grid scrolls to top when any row is clicked in ext js |
|
May 13 |
comment |
Binding an object to a datagrid column please choose your tags more carefully - no need to use 3 different C# tags |
|
May 13 |
comment |
Prevent windows from opening even if you could prevent it, you'd still have to provide a return value for dialogs having Ok/Cancel/Retry/... buttons. Anyway, the only real solution here is obvious: the source code should be modified in order to use something like an IModelDialogService eventually provided by some DI framework. Then while running tests you provide an implementation of that service that does nothing.. |