BusBoy
2
Main Page
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
cpp
api
external
ExternalContext.h
Go to the documentation of this file.
1
17
#ifndef __BUSBOY_EXTERNAL_CONTEXT_H__
18
#define __BUSBOY_EXTERNAL_CONTEXT_H__
19
20
#include "
context/context_api.h
"
21
#include "
CExternalContext.h
"
22
23
namespace
BUSBOY {
24
25
26
class
ExternalContextImpl;
27
28
class
ExternalContext
{
29
30
public
:
31
32
ExternalContext
(
const
CExternalContextCallbacks
& callbacks);
33
34
void
reportFailure
(
const
char
* msg);
35
36
void
initContext
(
AlgorithmContext
& context);
37
38
~ExternalContext
();
39
40
private
:
41
42
ExternalContextImpl
* m_impl;
43
44
// prevent calling these
45
ExternalContext
(
const
ExternalContext
& context);
46
ExternalContext
& operator=(
const
ExternalContext
& context);
47
48
};
49
50
}
51
#endif
52
53
54
Tue Nov 11 2014 23:19:41
1.8.3.1
Copyright 2014 Google Inc. All rights reserved.