~ubuntu-branches/ubuntu/precise/flightgear/precise

« back to all changes in this revision

Viewing changes to src/FDM/JSBSim/math/FGCondition.h

  • Committer: Package Import Robot
  • Author(s): Ove Kaaven
  • Date: 2011-09-03 22:16:12 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: package-import@ubuntu.com-20110903221612-2cjy0z7ztj5nkln5
Tags: 2.4.0-1
* New upstream release. Closes: #638588.
* Build-Depend on OpenSceneGraph 3.0, and the Subversion library.
* Recommend fgfs-scenery-base.
* Enable parallel builds (shorter compile times on multicore CPUs).
* Removed hack that tried to build without optimizations if
  building with optimizations fails.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
DEFINITIONS
45
45
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
46
46
 
47
 
#define ID_CONDITION "$Id$"
 
47
#define ID_CONDITION "$Id: FGCondition.h,v 1.6 2011/04/05 20:20:21 andgi Exp $"
48
48
 
49
49
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50
50
FORWARD DECLARATIONS
53
53
namespace JSBSim {
54
54
 
55
55
class FGPropertyManager;
 
56
class FGPropertyValue;
56
57
class Element;
57
58
 
58
59
/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
82
83
  std::map <std::string, eComparison> mComparison;
83
84
  eLogic Logic;
84
85
 
85
 
  FGPropertyManager *TestParam1, *TestParam2, *PropertyManager;
 
86
  FGPropertyManager *PropertyManager;
 
87
  FGPropertyValue *TestParam1, *TestParam2;
86
88
  double TestValue;
87
89
  eComparison Comparison;
88
90
  bool isGroup;