We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfeba30 commit d677cc0Copy full SHA for d677cc0
src/AvTranscoder/common.hpp
@@ -82,8 +82,10 @@ class AvExport ParamSet
82
void* _objContext;
83
};
84
85
-void AvExport split( std::vector< std::string >& splitedString, const std::string& inputString, const std::string& splitChars = ";" );
86
-int AvExport getFilesInDir( const std::string& dir, std::vector< std::string >& files );
+#ifndef SWIG
+void split( std::vector< std::string >& splitedString, const std::string& inputString, const std::string& splitChars = ";" );
87
+int getFilesInDir( const std::string& dir, std::vector< std::string >& files );
88
+#endif
89
90
std::string AvExport getFormat( const std::string& filename );
91
bool AvExport matchFormat( const std::string& format, const std::string& filename );
0 commit comments