Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WCCL
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Analysers
WCCL
Commits
7fec8020
Commit
7fec8020
authored
13 years ago
by
Paweł Kędzia
Browse files
Options
Downloads
Patches
Plain Diff
Added wrapper for Wccl::MatchData
parent
504fc14e
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
swig/Makefile
+8
-0
8 additions, 0 deletions
swig/Makefile
swig/libcclannotationmatch.i
+37
-0
37 additions, 0 deletions
swig/libcclannotationmatch.i
with
45 additions
and
0 deletions
swig/Makefile
+
8
−
0
View file @
7fec8020
...
...
@@ -23,6 +23,7 @@ CBIN=libcclvalue.o \
libcclmatch.o
\
libcclmatchdata.o
\
libccltokenmatch.o
\
libcclannotationmatch.o
\
libcclexpression.o
\
libcclparsedexpression.o
\
libcclfunctionaloperator.o
\
...
...
@@ -192,6 +193,13 @@ libccltokenmatch.o:
$(
CPP
)
-shared
libccltokenmatch_wrap.o
\
$(
CCLBIN
)
$(
ANTLRLIB
)
-o
_libccltokenmatch.so
# AnnotationMatch
libcclannotationmatch.o
:
$(
SWIG
)
$(
SWIGOPTS_LANG
)
libcclannotationmatch.i
$(
CPP
)
-c
libcclannotationmatch_wrap.cxx
-I
$(
PYTHONDIR
)
-I
$(
WCCLDIR
)
$(
CPPFLAGS
)
$(
CPP
)
-shared
libcclannotationmatch_wrap.o
\
$(
CCLBIN
)
$(
ANTLRLIB
)
-o
_libcclannotationmatch.so
# Expression
libcclexpression.o
:
$(
SWIG
)
$(
SWIGOPTS_LANG
)
libcclexpression.i
...
...
This diff is collapsed.
Click to expand it.
swig/libcclannotationmatch.i
0 → 100644
+
37
−
0
View file @
7fec8020
#
ifndef
SWIG_LIBWCCL_ANNOTATIONMATCH_I
#
define
SWIG_LIBWCCL_ANNOTATIONMATCH_I
%
module
libcclannotationmatch
%
{
#include <libwccl/values/annotationmatch.h>
%}
%
include
"
std_string.i
"
%
include
"
libcclposition.i
"
%
include
"
libcclmatchdata.i
"
%
include
"
libcorpus/libcorpusannotatedsentence.i
"
%
nodefaultctor
Wccl
::
AnnotationMatch
;
namespace
Wccl
{
class AnnotationMatch : public MatchData {
public:
explicit AnnotationMatch(Position position, const std::string channel);
explicit AnnotationMatch(int pos, const std::string channel);
/* --------------------------------------------------------------------- */
bool empty() const;
/* --------------------------------------------------------------------- */
Position first_token(const boost::shared_ptr<Corpus2::AnnotatedSentence>&) const;
Position last_token(const boost::shared_ptr<Corpus2::AnnotatedSentence>&) const;
/* --------------------------------------------------------------------- */
std::string to_raw_string() const;
};
}
using
namespace
std
;
using
namespace
Wccl
;
#
endif
/* SWIG_LIBWCCL_ANNOTATIONMATCH_I */
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment