2009-03-05 02:10:06 +01:00
|
|
|
// Copyright (c) 2009 The Chromium Embedded Framework Authors. All rights
|
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef _HANDLER_CPPTOC_H
|
|
|
|
#define _HANDLER_CPPTOC_H
|
|
|
|
|
|
|
|
#ifndef USING_CEF_SHARED
|
|
|
|
#pragma message("Warning: "__FILE__" may be accessed wrapper-side only")
|
|
|
|
#else // USING_CEF_SHARED
|
|
|
|
|
|
|
|
#include "cef.h"
|
|
|
|
#include "cef_capi.h"
|
|
|
|
#include "cpptoc.h"
|
|
|
|
|
|
|
|
|
|
|
|
// Wrap a C++ handler class with a C handler structure.
|
|
|
|
// This class may be instantiated and accessed wrapper-side only.
|
2009-05-28 02:31:21 +02:00
|
|
|
class CefHandlerCppToC
|
|
|
|
: public CefCppToC<CefHandlerCppToC, CefHandler, cef_handler_t>
|
2009-03-05 02:10:06 +01:00
|
|
|
{
|
|
|
|
public:
|
2009-03-08 03:26:16 +01:00
|
|
|
CefHandlerCppToC(CefHandler* cls);
|
2009-03-05 02:10:06 +01:00
|
|
|
virtual ~CefHandlerCppToC() {}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // USING_CEF_SHARED
|
|
|
|
#endif // _HANDLER_CPPTOC_H
|