Added jinja framework for templates and base templates for functions and docs

This commit is contained in:
Hilton Bristow
2013-03-13 21:52:13 +10:00
committed by hbristow
parent ac748747d4
commit 5d1944bace
66 changed files with 14924 additions and 39 deletions

View File

@@ -0,0 +1,15 @@
#ifndef OPENCV_BRIDGE_HPP_
#define OPENCV_BRIDGE_HPP_
#include "mex.h"
namespace mex {
class Bridge {
private:
mxArray* m_;
public:
bool valid() { return_ m_ != 0; } const
mxArray* toMxArray() { return m_; } const
};
#endif