diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-04 17:02:52 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-01-04 17:02:52 +0000 |
| commit | f829cd6c87530c819bcf752c0e2a8f42685e0e5a (patch) | |
| tree | c2e4fa0fbb3218828a5034dfcbde8a7dc6bada9f /src/imp.cc | |
| parent | f4802823b481b47a240002d086a5caefee3e4b61 (diff) | |
IMP CPL bits.
Diffstat (limited to 'src/imp.cc')
| -rw-r--r-- | src/imp.cc | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -18,6 +18,7 @@ */ #include "imp.h" +#include "imp_cpl.h" using std::list; using std::string; @@ -31,10 +32,9 @@ IMP::IMP (boost::filesystem::path directory) } shared_ptr<CPL> -IMP::read_cpl (boost::filesystem::path) const +IMP::read_cpl (boost::filesystem::path file) const { - /* XXX */ - return shared_ptr<CPL> (); + return shared_ptr<CPL> (new IMPCPL (file)); } void |
