HoverRace  2.0
ConcreteShape.h
Go to the documentation of this file.
1 // ConcreteShape.h
2 //
3 //
4 // Copyright (c) 1995-1998 - Richard Langlois and Grokksoft Inc.
5 //
6 // Licensed under GrokkSoft HoverRace SourceCode License v1.0(the "License");
7 // you may not use this file except in compliance with the License.
8 //
9 // A copy of the license should have been attached to the package from which
10 // you have taken this file. If you can not find the license you can not use
11 // this file.
12 //
13 //
14 // The author makes no representations about the suitability of
15 // this software for any purpose. It is provided "as is" "AS IS",
16 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
17 // implied.
18 //
19 // See the License for the specific language governing permissions
20 // and limitations under the License.
21 //
22 //
23 // This file contains non-abstact class that can be used
24 // to create stand alone MR_ShapeInterface derived objects
25 
26 #pragma once
27 
28 #include "Shapes.h"
29 
30 #if defined(_WIN32) && defined(HR_ENGINE_SHARED)
31 # ifdef MR_ENGINE
32 # define MR_DllDeclare __declspec( dllexport )
33 # else
34 # define MR_DllDeclare __declspec( dllimport )
35 # endif
36 #else
37 # define MR_DllDeclare
38 #endif
39 
40 namespace HoverRace {
41 namespace Model {
42 
44 {
45  public:
50 
51  MR_Int32 ZMin() const;
52  MR_Int32 ZMax() const;
53  MR_Int32 AxisX() const;
54  MR_Int32 AxisY() const;
55  MR_Int32 RayLen() const;
56 
57 };
58 
59 } // namespace Model
60 } // namespace HoverRace
61 
62 #undef MR_DllDeclare
Definition: ConcreteShape.h:43
Definition: WorldCoordinates.h:46
MR_Int32 mRayLen
Definition: ConcreteShape.h:47
MR_Int32 mZMax
Definition: ConcreteShape.h:49
#define MR_DllDeclare
Definition: ConcreteShape.h:37
Definition: Shapes.h:75
int32_t MR_Int32
Definition: MR_Types.h:43
MR_Int32 mZMin
Definition: ConcreteShape.h:48
Definition: Announcement.h:24
MR_2DCoordinate mAxis
Definition: ConcreteShape.h:46