Panda3D
 All Classes Functions Variables Enumerations
awWebCore.I
1 // Filename: awWebCore.I
2 // Created by: rurbino (12Oct09)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 
16 INLINE void AwWebCore::
17 setBaseDirectory(const std::string& baseDirectory) {
18  WebCore::setBaseDirectory(baseDirectory);
19 }
20 
21 INLINE void AwWebCore::
22 setCustomResponsePage(int statusCode, const std::string& filePath) {
23  WebCore::setCustomResponsePage(statusCode, filePath);
24 }
25 
26 INLINE void AwWebCore::
27 update() {
28  WebCore::update();
29 }
30 
31 INLINE const std::string& AwWebCore::
32 getBaseDirectory() const {
33  return WebCore::getBaseDirectory();
34 }
35 
36 INLINE bool AwWebCore::
37 arePluginsEnabled() const {
38  return WebCore::arePluginsEnabled();
39 }
40 
41 
42 INLINE void AwWebCore::
43 pause(){
44  WebCore::pause();
45 }
46 
47 INLINE void AwWebCore::
48 resume() {
49  WebCore::resume();
50 }
51 
52