Path: blob/master/modules/gapi/src/api/gcomputation_priv.hpp
16338 views
// This file is part of OpenCV project.1// It is subject to the license terms in the LICENSE file found in the top-level directory2// of this distribution and at http://opencv.org/license.html.3//4// Copyright (C) 2018 Intel Corporation567#ifndef OPENCV_GAPI_GCOMPUTATION_PRIV_HPP8#define OPENCV_GAPI_GCOMPUTATION_PRIV_HPP910#include "opencv2/gapi.hpp"11#include "opencv2/gapi/gcall.hpp"1213#include "opencv2/gapi/util/variant.hpp"1415namespace cv {1617class GComputation::Priv18{19public:20GCompiled m_lastCompiled;21GMetaArgs m_lastMetas; // TODO: make GCompiled remember its metas?22GProtoArgs m_ins;23GProtoArgs m_outs;24};2526}2728#endif // OPENCV_GAPI_GCOMPUTATION_PRIV_HPP293031