mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 15:23:05 +04:00
1f517b8a02
G-API external backend development (#13943) * Moved HostCtor and ConstVal from gapi_priv.hpp to objref.hpp * Added gmodel_priv.hpp, added export of symbols from gmodel.hpp * Added export of binInArg and bindOutArg * Renamed gapi_priv.*pp -> gorigin.*pp * Added a fixme on collecting exports inside one class
36 lines
925 B
C++
36 lines
925 B
C++
// This file is part of OpenCV project.
|
|
// It is subject to the license terms in the LICENSE file found in the top-level directory
|
|
// of this distribution and at http://opencv.org/license.html.
|
|
//
|
|
// Copyright (C) 2018 Intel Corporation
|
|
|
|
|
|
#ifndef OPENCV_GAPI_GPROTO_PRIV_HPP
|
|
#define OPENCV_GAPI_GPROTO_PRIV_HPP
|
|
|
|
#include "opencv2/gapi/gproto.hpp"
|
|
#include "opencv2/gapi/garg.hpp"
|
|
|
|
#include "api/gorigin.hpp"
|
|
|
|
namespace cv {
|
|
namespace gimpl {
|
|
namespace proto {
|
|
|
|
// These methods are used by GModelBuilder only
|
|
// FIXME: Document semantics
|
|
|
|
// FIXME: GAPI_EXPORTS because of tests only!
|
|
// FIXME: Possible dangling reference alert!!!
|
|
GAPI_EXPORTS const GOrigin& origin_of (const GProtoArg &arg);
|
|
GAPI_EXPORTS const GOrigin& origin_of (const GArg &arg);
|
|
|
|
bool is_dynamic(const GArg &arg);
|
|
GProtoArg rewrap (const GArg &arg);
|
|
|
|
} // proto
|
|
} // gimpl
|
|
} // cv
|
|
|
|
#endif // OPENCV_GAPI_GPROTO_PRIV_HPP
|