Changeset 149 in pacpusframework


Ignore:
Timestamp:
07/31/13 17:16:03 (11 years ago)
Author:
Marek Kurdej
Message:

Fixed: DLL import/export in geodesie.h.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0-beta1/include/Pacpus/PacpusTools/geodesie.h

    r148 r149  
    7171};
    7272
    73 Matrice TransMat(const Matrice A);
    74 
    75 Matrice ProdMat(const Matrice A,const Matrice B);
    76 void Write(const Matrice A,std::ostream& out);
     73PACPUS_TOOLS_API Matrice TransMat(const Matrice A);
     74PACPUS_TOOLS_API Matrice ProdMat(const Matrice A,const Matrice B);
     75PACPUS_TOOLS_API void Write(const Matrice A,std::ostream& out);
    7776
    7877////////////////////////////////////////////////////////////////////////
     
    104103
    105104////////////////////////////////////////////////////////////////////////
    106 inline double Deg2Rad(double deg) {return deg*M_PI/180.0;}
    107 inline double Rad2Deg(double rad) {return rad*180.0/M_PI;}
     105inline double Deg2Rad(double deg)
     106{
     107    return deg*M_PI/180.0;
     108}
     109
     110inline double Rad2Deg(double rad)
     111{
     112    return rad*180.0/M_PI;
     113}
     114
    108115////////////////////////////////////////////////////////////////////////
    109116
Note: See TracChangeset for help on using the changeset viewer.