VR-Forces 4.1 Class Documentation
Home
Modules
Namespaces
Classes
Files
Examples
Behavior Models
File List
File Members
include
terrainCS
ser_lcc.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 ser_lcc_H_
9
#define ser_lcc_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/serializ.h
"
18
#include "
terrainCS/lamConfCrdSys.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 Tue Jan 29 18:21:16 EST 2013 from SVN revision 123193
Copyright © 2005-2013 VT MÄK Inc. All Rights Reserved (
www.mak.com
)