All Classes Functions Variables
VectorNonCopyable.hpp
1 #ifndef VectorNonCopyable_H
2 #define VectorNonCopyable_H
3 
4 #include <vector>
5 #include "NonCopyable.hpp"
6 
7 template <class T>
8 class VectorNonCopyable : public std::vector<T>, public NonCopyable
9 {
10  public:
11 
12  protected:
13 
14  private:
15 
16 };
17 
18 
19 #endif // VectorNonCopyable_H