VR-Forces 4.6 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
terrainCS
serializableGeodeticCS.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 1998 MAK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************/
5
/*********************************************************************
6
** $RCSfile: serGeodCrdSys.h,v $ $Revision: 1.6 $ $State: Exp $
7
*********************************************************************/
8
#ifndef serializableGeodeticCS_H_
9
#define serializableGeodeticCS_H_
10
11
//
12
// \file serGeodCrdSys.h Contains the serializable geodetic coordinate system class declaration.
13
//
14
15
#include "
terrainCS/terrainCSDefines.h
"
16
#include <stdio.h>
17
#include "
tdbutil/serializable.h
"
18
#include "
terrainCS/geodeticCS.h
"
19
20
//
21
// DtSerializableGeodeticCS is a serializable version of the DtGeodeticCS.
22
//
23
class
DT_DLL_terrainCS
DtSerializableGeodeticCS
:
public
DtGeodeticCS
,
public
DtSerializable
24
{
25
public
:
26
// constructor
27
DtSerializableGeodeticCS
();
28
29
// constructor
30
DtSerializableGeodeticCS
(FILE* fp);
31
32
// copy constructor
33
DtSerializableGeodeticCS
(
const
DtSerializableGeodeticCS
& orig);
34
35
// destructor
36
virtual
~
DtSerializableGeodeticCS
();
37
38
// assignment operator
39
DtSerializableGeodeticCS
&
operator=
(
const
DtSerializableGeodeticCS
& orig);
40
41
// Clone operator
42
virtual
Coordinate_System
*
clone
()
const
;
43
44
// Read from the specified file handle.
45
virtual
bool
readFrom
(FILE* fp);
46
47
// Write to the specified file handle.
48
virtual
bool
writeTo
(FILE* fp);
49
};
50
51
52
#endif
Document ID: Generated on Thu Apr 12 03:15:37 EDT 2018 from SVN revision 187986
Copyright © 2005-2018 VT MÄK. All Rights Reserved (
www.mak.com
)