summaryrefslogtreecommitdiff
path: root/swig/CapFactory.i
diff options
context:
space:
mode:
Diffstat (limited to 'swig/CapFactory.i')
-rw-r--r--swig/CapFactory.i56
1 files changed, 0 insertions, 56 deletions
diff --git a/swig/CapFactory.i b/swig/CapFactory.i
deleted file mode 100644
index cb61475..0000000
--- a/swig/CapFactory.i
+++ /dev/null
@@ -1,56 +0,0 @@
-
-class CapFactory
-{
-
- public:
- /** Default ctor */
- CapFactory();
-
- /** Dtor */
- ~CapFactory();
-
- public:
- /** Parse Capability from string providing Resolvable::Kind.
- * \a strval_r is expected to define a valid Capability.
- * \throw EXCEPTION on parse error.
- */
- Capability parse( const Resolvable::Kind & refers_r,
- const std::string & strval_r ) const;
-
-
- /** Parse Capability providing Resolvable::Kind, name, Rel and Edition as strings.
- * \throw EXCEPTION on parse error.
- */
- Capability parse( const Resolvable::Kind & refers_r,
- const std::string & name_r,
- const std::string & op_r,
- const std::string & edition_r ) const;
-
- /** Parse Capability providing Resolvable::Kind, name, Rel and Edition.
- * \throw EXCEPTION on parse error.
- */
- Capability parse( const Resolvable::Kind & refers_r,
- const std::string & name_r,
- Rel op_r,
- const zypp::Edition & edition_r ) const;
-
- /** Special Capability, triggering evaluation of Hal
- * capabilities when matched.
- */
- Capability halEvalCap() const;
-
- /** Special Capability, triggering evaluation of modalias
- * capabilities when matched.
- */
- Capability modaliasEvalCap() const;
-
- public:
- /** Provide a parsable string representation of \a cap_r. */
- std::string encode( const Capability & cap_r ) const;
-
- private:
- /** Implementation */
- struct Impl;
- /** Pointer to implementation */
- RW_pointer<Impl> _pimpl;
-};