boost multi_index 容器的显式实例化

Explicit instantion of boost multi_index container

首先我想展示工作代码,然后解释我想如何改变。这是简单的提升 multi_index 示例:

//main.cpp    
    #include <boost/multi_index_container.hpp>
    #include <boost/multi_index/ordered_index.hpp>
    #include <boost/multi_index/identity.hpp>
    #include <boost/multi_index/member.hpp>
    #include <string>

    struct employee
    {
        int         id;
        std::string name;

        employee(int id, const std::string& name) :id(id), name(name){}

        bool operator<(const employee& e)const{ return id<e.id; }
    };

    typedef boost::multi_index::multi_index_container<
        employee,
        boost::multi_index:: indexed_by<
        // sort by employee::operator<
        boost::multi_index:: ordered_unique< boost::multi_index:: identity<employee> >,

        // sort by less<string> on name
        boost::multi_index::ordered_non_unique<boost::multi_index::member<employee, std::string, &employee::name> >
        >
    > employee_set;

    int main()
    {
        employee_set es;
        es.insert(employee(0, "Bob"));
    }

想象一下,如果 main.cpp 是另一个模块,没有 boost 依赖。我想了解如何:

包含一些带有 boost multiindex 容器的头文件 class 正向声明到 main.cpp 在附加的 .cpp 文件中定义员工的多索引容器 我尝试了很多变体,但 none 如果可行的话。是否可以创建这样的东西?

//notmain.cpp
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/identity.hpp>
#include <boost/multi_index/member.hpp>
#include "notmain.h"

typedef boost::multi_index::multi_index_container<
    employee,
    boost::multi_index::indexed_by<
    // sort by employee::operator<
    boost::multi_index::ordered_unique< boost::multi_index::identity<employee> >,

    // sort by less<string> on name
    boost::multi_index::ordered_non_unique<boost::multi_index::member<employee, std::string, &employee::name> >
    >
> employee_set;

现在 h.file 我需要填写容器的前向声明(或显式启动)。我可能误解了这些术语,但我是 c++ 和 boost 的新手。

//notmain.h

#include <string>

/*
    Some how here I need forward declaration or explicit initiation of boost container 
    class employee_set ???

*/

struct employee
{
    int         id;
    std::string name;

    employee(int id, const std::string& name) :id(id), name(name){}

    bool operator<(const employee& e)const{ return id<e.id; }
};

这是最终目标。提醒一下,main.cpp被想象成另一个模块的.cpp,没有boost依赖。

//main.cpp
#include "notmain.h"

int main()
{
    employee_set es;
    es.insert(employee(0, "Bob"));
}

如果该类型是 class' 可见接口的一部分,则必须包含 class 所依赖的任何 header,这是没有办法的。如果您真的不希望它成为可见界面的一部分,请考虑使用 pImpl 习惯用法:

Public header

#if !defined(MYCLASS_PUBLIC_H_)
#define MYCLASS_PUBLIC_H_

struct MyClassImpl;
class MyClass {
  MyClassImpl * pImpl;
public:
  void SomeOperation();
};
#endif

实施header:

#if !defined(MYCLASS_IMPL_H_)
#define MYCLASS_IMPL_H_
#include <private_type.h>
#include "MyClass.h"
struct MyClassImpl
{
  void Operation();

private:
  SomePrivateType member;
};
#endif

执行文件:

#include "MyClassImpl.h"
void MyClass::SomeOperation()
{
  pImpl->Operation();
}

void MyClassImpl::Operation()
{
  // do something with 'member'
}

只看到public界面的代码:

#include "MyClass.h"
void foo()
{
  MyClass inst;
  inst.SomeOperation();
}