forked from rism-digital/verovio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverovio.i
More file actions
31 lines (24 loc) · 909 Bytes
/
verovio.i
File metadata and controls
31 lines (24 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/////////////////////////////////////////////////////////////////////////////
// Name: verovio.i
// Author: Laurent Pugin
// Created: 09/11/2014
// Copyright (c) Authors and others. All rights reserved.
/////////////////////////////////////////////////////////////////////////////
// Change method names to lowerCamelCase
%rename("%(lowercamelcase)s") "";
// Method to ignore
%ignore vrv::Toolkit::GetShowBoundingBoxes( );
%ignore vrv::Toolkit::GetCString( );
%ignore vrv::Toolkit::GetLogString( );
//%ignore vrv::Toolkit::ParseOptions( const std::string & );
%ignore vrv::Toolkit::ResetLogBuffer( );
%ignore vrv::Toolkit::SetShowBoundingBoxes( bool );
%ignore vrv::Toolkit::SetCString( const std::string & );
%module verovio
%include "std_string.i"
%include "../include/vrv/toolkit.h"
%{
#include "../include/vrv/toolkit.h"
using namespace vrv;
using namespace std;
%}