Skip to content

Commit a1e7c0c

Browse files
Merge pull request vsg-dev#209 from AnyOldName3/gdal-fallback-new-functions
Add new functions to GDAL_fallback.cpp
2 parents 77cfa3b + 0c18bbc commit a1e7c0c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/gdal/GDAL_fallback.cpp

+8
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ vsg::ref_ptr<vsg::Object> GDAL::read(const vsg::Path&, vsg::ref_ptr<const vsg::O
3232
{
3333
return {};
3434
}
35+
vsg::ref_ptr<vsg::Object> GDAL::read(std::istream&, vsg::ref_ptr<const vsg::Options>) const
36+
{
37+
return {};
38+
}
39+
vsg::ref_ptr<vsg::Object> GDAL::read(const uint8_t*, size_t, vsg::ref_ptr<const vsg::Options>) const
40+
{
41+
return {};
42+
}
3543
bool GDAL::getFeatures(Features&) const
3644
{
3745
return false;

0 commit comments

Comments
 (0)