Changeset 7625 in ntrip for trunk/BNC/src/bncantex.h


Ignore:
Timestamp:
Dec 9, 2015, 5:23:34 PM (8 years ago)
Author:
stuerze
Message:

some value initialization in constructor is added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/BNC/src/bncantex.h

    r7521 r7625  
    4848  class t_frqMap {
    4949   public:
     50    t_frqMap() {
     51      for (unsigned ii = 0; ii < 3; ii++) {
     52        neu[ii] = 0.0;
     53      }
     54    }
    5055    double       neu[3];
    5156    ColumnVector pattern;
     
    5459  class t_antMap {
    5560   public:
    56     t_antMap() {}
     61    t_antMap() {
     62      zen1 = 0.0;
     63      zen2 = 0.0;
     64      dZen = 0.0;
     65    }
    5766    ~t_antMap() {
    5867      QMapIterator<t_frequency::type, t_frqMap*> it(frqMap);
Note: See TracChangeset for help on using the changeset viewer.