Skip to content

Commit

Permalink
Add missing constructor and fix access modifiers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kovalenko committed Oct 30, 2014
1 parent 6a0df1b commit 15573dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/editors/xrManagedApi/core/fs/FS.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ namespace ManagedApi
namespace Core
{

WriterBase::WriterBase(::IWriter* impl) { this->impl = impl; }
WriterBase::~WriterBase()
{
delete impl;
Expand Down
5 changes: 4 additions & 1 deletion src/editors/xrManagedApi/core/fs/FS.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,12 @@ public value struct Vector4I

public ref class WriterBase abstract
{
private:
internal:
::IWriter* impl;
private:
String^ fileName;
internal:
WriterBase(::IWriter* impl);
public:
property String^ FileName { String^ get(); }
~WriterBase();
Expand Down

0 comments on commit 15573dc

Please sign in to comment.