Panda3D
config_recorder.cxx
Go to the documentation of this file.
1 /**
2  * PANDA 3D SOFTWARE
3  * Copyright (c) Carnegie Mellon University. All rights reserved.
4  *
5  * All use of this software is subject to the terms of the revised BSD
6  * license. You should have received a copy of this license along
7  * with this source code in a file named "LICENSE."
8  *
9  * @file config_recorder.cxx
10  * @author drose
11  * @date 2004-01-28
12  */
13 
14 #include "config_recorder.h"
15 
16 #include "mouseRecorder.h"
17 #include "recorderController.h"
18 #include "recorderFrame.h"
19 #include "recorderHeader.h"
20 #include "recorderTable.h"
21 #include "socketStreamRecorder.h"
22 
23 #include "dconfig.h"
24 
25 #if !defined(CPPPARSER) && !defined(LINK_ALL_STATIC) && !defined(BUILDING_PANDA_RECORDER)
26  #error Buildsystem error: BUILDING_PANDA_RECORDER not defined
27 #endif
28 
29 ConfigureDef(config_recorder);
30 NotifyCategoryDef(recorder, "");
31 
32 ConfigureFn(config_recorder) {
33  MouseRecorder::init_type();
34  RecorderController::init_type();
35  RecorderFrame::init_type();
36  RecorderHeader::init_type();
37  RecorderTable::init_type();
38  ReferenceCount::init_type();
39 
44 
45 #ifdef HAVE_OPENSSL
46  SocketStreamRecorder::init_type();
47  SocketStreamRecorder::register_with_read_factory();
48 #endif
49 }
RecorderHeader::register_with_read_factory
static void register_with_read_factory()
Tells the BamReader how to create objects of type Lens.
Definition: recorderHeader.cxx:26
RecorderTable::register_with_read_factory
static void register_with_read_factory()
Tells the BamReader how to create objects of type Lens.
Definition: recorderTable.cxx:162
RecorderFrame::register_with_read_factory
static void register_with_read_factory()
Tells the BamReader how to create objects of type Lens.
Definition: recorderFrame.cxx:39
recorderFrame.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
recorderTable.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
MouseRecorder::register_with_read_factory
static void register_with_read_factory()
Tells the BamReader how to create objects of type Lens.
Definition: mouseRecorder.cxx:180
config_recorder.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
recorderController.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
recorderHeader.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
dconfig.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
socketStreamRecorder.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.
mouseRecorder.h
PANDA 3D SOFTWARE Copyright (c) Carnegie Mellon University.