Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
WCCL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Analysers
WCCL
Commits
e343d08f
Commit
e343d08f
authored
Apr 4, 2011
by
Paweł Kędzia
Browse files
Options
Downloads
Patches
Plain Diff
Added wrapper for Wccl::Match
parent
5b42d1a1
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
swig/libcclmatch.i
+37
-0
37 additions, 0 deletions
swig/libcclmatch.i
with
37 additions
and
0 deletions
swig/libcclmatch.i
0 → 100644
+
37
−
0
View file @
e343d08f
#
ifndef
SWIG_LIBWCCL_MATCH_I
#
define
SWIG_LIBWCCL_MATCH_I
%
module
libcclbool
%
{
#include <libwccl/values/value.h>
#include <libwccl/values/match.h>
%}
%
include
"
libcclvalue.i
"
%
include
"
std_string.i
"
%
feature
(
"
notabstract
"
)
Wccl
::
Match
;
namespace
Wccl
{
class Match : public Value {
public:
const char* get_type_name() const { return type_name; }
static std::string var_repr(const std::string &var_name);
std::string make_var_repr(const std::string &var_name) const {
return var_repr(var_name);
}
Match();
// TODO
// virtual Position first_token(const boost::shared_ptr<Corpus2::AnnotatedSentence>&) const;
// virtual 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_MATCH_I */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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