show/hide this revision's text 2 added 32 characters in body

If string and vector are used only in signatures of non-public members of you class, you could do something like thisuse the PImpl idiom:

// MyClass.h
class MyClassImpl;
class MyClass{
public:
    static MyClass * CreateMyClass()MyClass();
    protectedvoid MyMethod();
private:
    MyClass()MyClassImpl* m_impl;
};

// MyClassImpl.h
#include <vector>
#include <string>
#include <MyClass.h>
class MyClassImpl: public MyClass{
public:
    MyClassImpl();
    void MyMethod();
protected:
    std::vector<std::string> MyMethod()StdMethod();
};

// MyClass.cpp
#include <MyClass.h>
#include <MyClassImpl.h>

MyClass * MyClass::CreateMyClass()void MyClass::MyMethod(){
    return new MyClassImpl();
m_impl->MyMethod();
}

You are always including vector and string in the header file, but only in the implementation part of your class; files including only MyClass.h will not be pulling in string and vector.

show/hide this revision's text 1

If string and vector are used only in signatures of non-public members of you class, you could do something like this:

// MyClass.h
class MyClass{
public:
    static MyClass * CreateMyClass();
protected:
    MyClass();
};

// MyClassImpl.h
#include <vector>
#include <string>
#include <MyClass.h>
class MyClassImpl : public MyClass{
public:
    MyClassImpl();
protected:
    std::vector<std::string> MyMethod();
};

// MyClass.cpp
#include <MyClass.h>
#include <MyClassImpl.h>
MyClass * MyClass::CreateMyClass(){
    return new MyClassImpl();
}

You are always including vector and string in the header file, but only in the implementation part of your class; files including only MyClass.h will not be pulling in string and vector.