File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -90,9 +90,17 @@ From the project directory:
90
90
1 . Open the * BlobQuickstart.sln* solution file in Visual Studio
91
91
1 . Inside Visual Studio, open the * BlobQuickstart.cpp* source file
92
92
1 . Remove any code inside ` main ` that was autogenerated
93
- 1 . Add ` #include ` statements
93
+ 1 . Add ` #include ` and ` using namespace ` statements
94
94
95
- :::code language="cpp" source="~ /azure-storage-snippets/blobs/quickstarts/C++/V12/BlobQuickstartV12/BlobQuickstartV12/BlobQuickstartV12.cpp" ID="Snippet_Includes":::
95
+ ``` cpp
96
+ #include < iostream>
97
+ #include < azure/core.hpp>
98
+ #include < azure/identity/default_azure_credential.hpp>
99
+ #include < azure/storage/blobs.hpp>
100
+
101
+ using namespace Azure ::Identity;
102
+ using namespace Azure::Storage::Blobs;
103
+ ```
96
104
97
105
### Authenticate to Azure and authorize access to blob data
98
106
You can’t perform that action at this time.
0 commit comments