-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support basic mdf writing of .NET #24
Conversation
finish basic uses
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
MdfFactory.h/cpp
This change of C++ signature may cause problemfor existing c++ users. I suspect that it's the unique_ptr (memory) include that causing the problem. Maybe moving the include MdfFactory.h from the mdfwrite.h to its cpp file will fix the problem.
ok, I will create a new function |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work!
I change the return type of
CreateMdfWriter
&CreateMdfFile
ininclude/mdf/mdffactory.h
to common ptr to avoid unnecessary type casting. I don't think it's a good choice to return unique_ptr in an interface, it should be down by the users themselves.I just finish writing the basic features, if any futher supports needed, please tell me.