diff options
| author | Carl Hetherington <cth@carlh.net> | 2016-01-04 14:15:49 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2016-01-04 14:15:49 +0000 |
| commit | 59e8364fd9390d3285e15a5491c7b1876fe9696b (patch) | |
| tree | 014b1fe27192e6517cd524d6249e333d7dd75093 /src | |
| parent | b6833317988e4e9dbe5e4b427033af7979fffedd (diff) | |
Token IMP class.
Diffstat (limited to 'src')
| -rw-r--r-- | src/imp.cc | 29 | ||||
| -rw-r--r-- | src/imp.h | 34 | ||||
| -rw-r--r-- | src/wscript | 2 |
3 files changed, 65 insertions, 0 deletions
diff --git a/src/imp.cc b/src/imp.cc new file mode 100644 index 00000000..09810967 --- /dev/null +++ b/src/imp.cc @@ -0,0 +1,29 @@ +/* + Copyright (C) 2016 Carl Hetherington <cth@carlh.net> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "imp.h" + +using namespace dcp; + +IMP::IMP (boost::filesystem::path directory) + : Package (directory) +{ + +} + diff --git a/src/imp.h b/src/imp.h new file mode 100644 index 00000000..d83847dc --- /dev/null +++ b/src/imp.h @@ -0,0 +1,34 @@ +/* + Copyright (C) 2016 Carl Hetherington <cth@carlh.net> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + +*/ + +#include "package.h" + +namespace dcp { + +class IMP : public Package +{ +public: + IMP (boost::filesystem::path directory); + + +}; + +} + + diff --git a/src/wscript b/src/wscript index b2119408..780c7554 100644 --- a/src/wscript +++ b/src/wscript @@ -37,6 +37,7 @@ def build(bld): font_asset.cc font_node.cc gamma_transfer_function.cc + imp.cc interop_load_font_node.cc interop_subtitle_asset.cc j2k.cc @@ -99,6 +100,7 @@ def build(bld): exceptions.h font_asset.h gamma_transfer_function.h + imp.h interop_load_font_node.h interop_subtitle_asset.h j2k.h |
