Skip to content

Commit d677cc0

Browse files
committed
Windows: clean SWIG export into common.hpp
1 parent bfeba30 commit d677cc0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/AvTranscoder/common.hpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,10 @@ class AvExport ParamSet
8282
void* _objContext;
8383
};
8484

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 );
85+
#ifndef SWIG
86+
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
8789

8890
std::string AvExport getFormat( const std::string& filename );
8991
bool AvExport matchFormat( const std::string& format, const std::string& filename );

0 commit comments

Comments
 (0)