Vim plugin which helps you make pimpl pattern in c++ code.
Exanple of .vimrc
let g:pimplmaker_impl_class_name = 'Impl' " set the class name for pimpl pattern.
let g:pimplmaker_pimpl_instance_name = 'pimpl' " set the member variable name for pimpl pattern.
nnoremap <C-p> :MakePimpl<CR> " make pimpl pattern for the class with the current cursorOne command! (left to right)
This plugin is tested on few environments.
I hope your pull requests.

