Skip to content

Latest commit

 

History

History
80 lines (75 loc) · 2.99 KB

README.md

File metadata and controls

80 lines (75 loc) · 2.99 KB

CPP-03 Google Test, Namespace, Class, (2018,Igor

Notes during the course (slides)

  • compilation flags and debugging
    • Enable all warnings, treat them as errors:
      • -Wall, -Wextra, -Werror

. └── src ├── coding │   ├── CPP00 │   │   ├── hello_world │   │   ├── README.md │   │   └── test.cpp │   ├── CPP01 │   │   ├── hello_world │   │   ├── README.md │   │   ├── test2.cpp │   │   └── test.cpp │   ├── CPP02 │   │   ├── hello_world │   │   ├── README.md │   │   └── test.cpp │   ├── CPP03 │   │   ├── hello_world │   │   ├── README.md │   │   └── test.cpp │   ├── data2csv │   │   └── README.md │   ├── evo │   │   └── README.md │   ├── GDB │   │   └── README.md │   ├── GithubUsage │   │   └── README.md │   ├── ubuntuInstall │   │   └── README.md │   └── VS_Code │   └── README.md ├── paperReview │   ├── 20200106 │   │   ├── framework.png │   │   ├── README.md │   │   └── result.png │   ├── 20200107 │   │   ├── bxw.png │   │   ├── framework.png │   │   ├── README.md │   │   └── result.png │   ├── 20200217 │   │   ├── BIEestimator_1.pdf │   │   ├── framework.png │   │   ├── README.md │   │   └── s00190-003-0344-3.pdf │   ├── 20200218 │   │   ├── 20191225_ionitm_e_v9_2.pdf │   │   ├── framework1.png │   │   ├── README.md │   │   └── result1.png │   ├── gnss_technique │   │   ├── dop.png │   │   ├── Galileo.png │   │   ├── gpsOrbit.png │   │   ├── propogation.png │   │   ├── README.md │   │   ├── satellite.pn │   │   └── satellite.png │   └── README.md └── README.md

Reference

  1. (slides)
  2. Google Code Styleguide
  3. C++ tutorials

Contact