• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* ------------------------------------------------------------------
2  * Copyright (C) 1998-2009 PacketVideo
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
13  * express or implied.
14  * See the License for the specific language governing permissions
15  * and limitations under the License.
16  * -------------------------------------------------------------------
17  */
18 /*
19 **
20 ** Copyright 2009, The Android Open Source Project
21 **
22 ** Licensed under the Apache License, Version 2.0 (the "License");
23 ** you may not use this file except in compliance with the License.
24 ** You may obtain a copy of the License at
25 **
26 **     http://www.apache.org/licenses/LICENSE-2.0
27 **
28 ** Unless required by applicable law or agreed to in writing, software
29 ** distributed under the License is distributed on an "AS IS" BASIS,
30 ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31 ** See the License for the specific language governing permissions and
32 ** limitations under the License.
33 */
34 
35 #include "pvmf_event_handling.h"
36 
37 // TODO: header file is bloated with inlined code. Move it here.
38 
39 // ----------------------------------------------------------------------
40 // PVMFCmdResp
41 
IsA() const42 OSCL_EXPORT_REF PVMFEventCategory PVMFCmdResp::IsA() const
43 {
44     return PVMFCmdRespEvent;
45 }
46 
47 
48 // ----------------------------------------------------------------------
49 // PVMFAsyncEvent
50 
IsA() const51 OSCL_EXPORT_REF PVMFEventCategory PVMFAsyncEvent::IsA() const
52 {
53     return iEventCategory;
54 }
55