-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Project experimental attribute (#1244)
- Loading branch information
1 parent
d2b8054
commit 38c0133
Showing
7 changed files
with
59 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#include "pch.h" | ||
#include "CustomExperimentClass.h" | ||
#include "CustomExperimentClass.g.cpp" | ||
|
||
namespace winrt::TestComponentCSharp::implementation | ||
{ | ||
int32_t CustomExperimentClass::Value() | ||
{ | ||
return 4; | ||
} | ||
void CustomExperimentClass::Value(int32_t value) | ||
{ | ||
} | ||
void CustomExperimentClass::f() | ||
{ | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#pragma once | ||
#include "CustomExperimentClass.g.h" | ||
|
||
namespace winrt::TestComponentCSharp::implementation | ||
{ | ||
struct CustomExperimentClass : CustomExperimentClassT<CustomExperimentClass> | ||
{ | ||
CustomExperimentClass() = default; | ||
|
||
int32_t Value(); | ||
void Value(int32_t value); | ||
void f(); | ||
}; | ||
} | ||
namespace winrt::TestComponentCSharp::factory_implementation | ||
{ | ||
struct CustomExperimentClass : CustomExperimentClassT<CustomExperimentClass, implementation::CustomExperimentClass> | ||
{ | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters