VR-Forces 4.7 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Groups
Pages
include
readerWriter
getSelfCallbackInfo.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 2004 MaK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************/
5
6
// \file getSelfCbInfo.h
7
// \ingroup readerWriter
8
9
#pragma once
10
11
#include <mtl/mtl.h>
12
13
class
DtReaderWriter
;
14
15
typedef
void (*
DtGetSelfCallbackFcn
)(
16
DtReaderWriter
* obj, DtlObjPtr args,
void
* userData);
17
23
24
#include "
readerWriter/readerWriterDefines.h
"
25
class
DT_DLL_readerWriter
DtGetSelfCallbackInfo
26
{
27
public
:
28
30
DtGetSelfCallbackInfo
();
31
33
DtGetSelfCallbackInfo
(
34
DtGetSelfCallbackFcn
cb,
void
* userData);
35
37
virtual
~
DtGetSelfCallbackInfo
();
38
40
DtGetSelfCallbackInfo
(
const
DtGetSelfCallbackInfo
& orig);
41
43
DtGetSelfCallbackInfo
& operator=(
44
const
DtGetSelfCallbackInfo
& orig);
45
47
int
operator==
(
const
DtGetSelfCallbackInfo
& orig)
const
;
48
int
operator!=
(
const
DtGetSelfCallbackInfo
& orig)
const
;
49
51
virtual
void
setCallbackFunction(
DtGetSelfCallbackFcn
funct);
52
virtual
DtGetSelfCallbackFcn
callbackFunction()
const
;
53
55
virtual
void
setArgs(DtlObjPtr args);
56
virtual
DtlObjPtr args()
const
;
57
60
virtual
void
setUserData(
void
* data);
61
virtual
void
* userData()
const
;
62
63
protected
:
64
65
DtGetSelfCallbackFcn
myCallbackFunction
;
66
DtlObjPtr
myArgs
;
67
void
*
myUserData
;
68
};
69
Document ID: Generated on Fri Apr 26 21:53:14 EDT 2019 from SVN revision 197883
Copyright © 2005-2019 VT MAK. All Rights Reserved (
www.mak.com
)