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
terrainCS
serializableLambertConformalCS.h
Go to the documentation of this file.
1
/*********************************************************************
2
** Copyright (c) 2001 MAK Technologies, Inc.
3
** All rights reserved.
4
*********************************************************************/
5
/*********************************************************************
6
** $RCSfile: ser_lcc.h,v $ $Revision: 1.6 $ $State: Exp $
7
*********************************************************************/
8
#ifndef serializableLambertConformalCS_H_
9
#define serializableLambertConformalCS_H_
10
11
//
12
// \file ser_lcc.h
13
// Contains the serializable lambert conformal coordinate system class declaration.
14
//
15
#include "
terrainCS/terrainCSDefines.h
"
16
#include <stdio.h>
17
#include "
tdbutil/serializable.h
"
18
#include "
terrainCS/lambertConformalCS.h
"
19
20
//
21
// DtSerializableLambertConformalCS is a serializable version of the
22
// DtLambertConformalCS.
23
//
24
class
DT_DLL_terrainCS
DtSerializableLambertConformalCS
25
:
public
DtLambertConformalCS
,
public
DtSerializable
26
{
27
public
:
28
DtSerializableLambertConformalCS
(FILE *fp);
29
DtSerializableLambertConformalCS
(
double
passedLambda0,
30
double
passedPhi0,
31
double
passedPhi1,
32
double
passedPhi2);
33
34
// Copy Constructor
35
DtSerializableLambertConformalCS
(
const
DtSerializableLambertConformalCS
& orig);
36
37
// Destructor
38
virtual
~
DtSerializableLambertConformalCS
();
39
40
// Assignment operator
41
DtSerializableLambertConformalCS
&
operator=
(
const
DtSerializableLambertConformalCS
& orig);
42
43
// Clone operator
44
virtual
Coordinate_System
*
clone
()
const
;
45
46
virtual
bool
readFrom
(FILE* fp);
47
virtual
bool
writeTo
(FILE* fp);
48
};
49
50
51
#endif
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
)