DSRC Implementation in Veins - veins

I was wondering how Veins framework has implemented DSRC protocol. Are 1609.2, 1609.3 and 1609.4 standards fully implemented? If not, is there any resources to get their implementation code?

The official Veins website provides these information: http://veins.car2x.org/features/
Veins is an open-source tool available in GitHub: https://github.com/sommer/veins/releases or from the official site (given above)

1609.3 and 1609.4 are implemented, but not 1609.2.

Related

Django wiki (from its official website)

Choosing a wiki engine.
Django has a wiki at its official site. https://code.djangoproject.com/wiki I suppose this wiki engine must me rather stable and well supported. Maybe this is the best choice.
Could you tell me what is the name of this wiki application.
djangoproject.com uses Trac as an issue tracking system, Trac has a built-in wiki engine so I guess it is what they use (I grepped the djangoproject.com source code and did not find reference to any other Wiki engine).
A dedicated Wiki engine probably is a better choice than Trac's one but I have no expertise on the issue so I can't help you any further.

v8 javascript API documentation to work in c

Could any one point me to the [v8 javascript API documentation to work in c] so that I could find proper functions, their uses and return types for doing things, the various API's available on internet are old and the newer v8 is particularly not compatible with those (pre 2013)
check this out..
http://izs.me/v8-docs/namespacev8.html
This set of documents provides reference material generated from the V8 header file;
And For other documentation check this
http://code.google.com/apis/v8/
I've created a GitHub repository that is intended as up-to-date v8 API reference. Check out: http://peerigon.github.io/v8-docs/
To update the documentation, just fork the repo and run doxygen: https://github.com/peerigon/v8-docs

Free UML tool with c++ code generation and doxygen support

I know features such as code generation and doxygen support are usually considered commercial, but I was wondering if there are any free UML tools that support c++ code generation which supports doxygen documentation?
It would be very useful to produce a model with documentation and not have to repeat/edit this to enable the doxygen support.
EDIT: Forgot to mention I am developing under Linux (Ubuntu)
StarUML should be able to do it.
For free and very simple to use there is dia (vectorial diagram editor) with UML + dia2code
works for "ada|c|cpp|csharp|idl|java|php|php5|python|ruby|shp|sql"
First you draw your UML Class diagram, save it, and than use dia2code on the .dia file.
Since I also tried umbrello (userbase.kde.org/Umbrello) which has more features such as importing code, package/namespace...
Try BOUML, it's an excellent multiplatform UML toolbox

Usage of C++ on Mac for Interactive Broker API? - Example?

After years of no programming I am on my way to learn C++ on my Mac OSX. My eager goal is the creation of an algorithmic/automatic trading software for use with Interactive Brokers.
Now, I downloaded their API for Mac OSX and the docs. But I get the notion that the API for MacOSX is only for usage with Java?
I case I am wrong: I would be very happy if someone could help me with a few lines of C++ for usage on the IB-API, e. g. opening a session or loading marketdata for a security?
Btw, I did that with R and after having found some examples it was quite easy to use.
Thanks.
IB also provides the so called "Posix C++ API" which should work on MacOSX (It's stupidly included within the twsapi_unixmac_*.jar archive).
There is an autotools based project (twsapi) from this original IB code which builds fine on MacOSX, see
https://github.com/rudimeier/twsapi
A more exciting example of how to use twsapi in practice you may find in the twstools
project there:
https://github.com/rudimeier/twstools
Another wrapper directly around the C++ Posix version that compiles and runs on many platforms is TwsApiC++.
You can find it at https://github.com/JanBoonen/TwsApiCpp
It also includes some examples.

KnowledgeSyncProvider class

Does anybody know where to find documentation, howtos, tutorials, etc., on how to extend the KnowledgeSyncProvider class. This class in new with the Microsoft Sync Framework 2.0 CTP. It comes with a sample, but we were not able to find a big picture documentation of this class, besides the absolutely useless MSDN reference documentation.
Thanks!
The KnowledgeSyncProvider class seems to have been in the Microsoft Sync Framework 1.0 already. There is a sample here How to: Configure N-Tier Peer-to-Peer Synchronization
The SyncSDK (1st link Zanoni provided) comes with a sample application the Managed NTFS Provider Sample. And the MyStore.cs file has some inline documentation too.
There is the Pro Sync Framework book on google books (it think they handle the 1.0 version). Of course some pages are missing but I guess you can figure out some anyway. And the source-code for the book samples is available too
Inherit the class:
public abstract class KnowledgeSyncProvider : SyncProvider
There are some links could be helpful:
Microsoft Sync Framework 2.0 CTP2
http://www.microsoft.com/downloads/details.aspx?FamilyID=89adbb1e-53ff-41b5-ba17-8e43a2e66254&displaylang=en
and
Microsoft Sync Framework 2.0 CTP (October 2008) Documentation
http://www.microsoft.com/downloads/details.aspx?FamilyID=A3EE7BC5-A823-4FB4-B152-9E8CE9D5546F&displaylang=en