Skip to content
Snippets Groups Projects
Commit 65509f10 authored by Paweł Kędzia's avatar Paweł Kędzia
Browse files

(swig) Removed boost:: namespace from Wccl::Lexicons

parent 6c76152d
Branches
No related merge requests found
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
namespace Wccl { namespace Wccl {
class Lexicons { class Lexicons {
public: public:
typedef boost::unordered_map<std::string, boost::shared_ptr<Lexicon> > map_t; typedef unordered_map<std::string, shared_ptr<Lexicon> > map_t;
/* --------------------------------------------------------------------- */ /* --------------------------------------------------------------------- */
...@@ -29,11 +29,11 @@ namespace Wccl { ...@@ -29,11 +29,11 @@ namespace Wccl {
/* --------------------------------------------------------------------- */ /* --------------------------------------------------------------------- */
const Lexicon& get(const std::string& name) const; const Lexicon& get(const std::string& name) const;
boost::shared_ptr<const Lexicon> get_ptr(const std::string& name) const; shared_ptr<const Lexicon> get_ptr(const std::string& name) const;
/* --------------------------------------------------------------------- */ /* --------------------------------------------------------------------- */
void insert(const boost::shared_ptr<Lexicon>& lexicon); void insert(const shared_ptr<Lexicon>& lexicon);
/* --------------------------------------------------------------------- */ /* --------------------------------------------------------------------- */
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment