Rename all the app .cpp/.hpp to have app name first.

Larger refactoring of filenames and namespaces imminent!
This commit is contained in:
Jared Boone 2015-12-08 15:28:33 -08:00
parent d0d97e92cb
commit 218d81fc60
12 changed files with 30 additions and 30 deletions

View File

@ -168,12 +168,12 @@ CPPSRC = main.cpp \
ui_spectrum.cpp \
receiver_model.cpp \
spectrum_color_lut.cpp \
app_analog_audio.cpp \
analog_audio_app.cpp \
ais_baseband.cpp \
app_ais.cpp \
app_tpms.cpp \
app_ert.cpp \
app_spectrum_analysis.cpp \
ais_app.cpp \
tpms_app.cpp \
ert_app.cpp \
spectrum_analysis_app.cpp \
sd_card.cpp \
log_file.cpp \
manchester.cpp \

View File

@ -19,7 +19,7 @@
* Boston, MA 02110-1301, USA.
*/
#include "app_ais.hpp"
#include "ais_app.hpp"
#include "portapack.hpp"
using namespace portapack;

View File

@ -19,8 +19,8 @@
* Boston, MA 02110-1301, USA.
*/
#ifndef __APP_AIS_H__
#define __APP_AIS_H__
#ifndef __AIS_APP_H__
#define __AIS_APP_H__
#include "ui_console.hpp"
#include "message.hpp"
@ -190,4 +190,4 @@ private:
} /* namespace ui */
#endif/*__APP_AIS_H__*/
#endif/*__AIS_APP_H__*/

View File

@ -19,7 +19,7 @@
* Boston, MA 02110-1301, USA.
*/
#include "app_analog_audio.hpp"
#include "analog_audio_app.hpp"
#include "portapack.hpp"
using namespace portapack;

View File

@ -19,8 +19,8 @@
* Boston, MA 02110-1301, USA.
*/
#ifndef __APP_ANALOG_AUDIO_H__
#define __APP_ANALOG_AUDIO_H__
#ifndef __ANALOG_AUDIO_APP_H__
#define __ANALOG_AUDIO_APP_H__
#include "receiver_model.hpp"
#include "ui_spectrum.hpp"
@ -46,4 +46,4 @@ private:
} /* namespace ui */
#endif/*__APP_ANALOG_AUDIO_H__*/
#endif/*__ANALOG_AUDIO_APP_H__*/

View File

@ -19,7 +19,7 @@
* Boston, MA 02110-1301, USA.
*/
#include "app_ert.hpp"
#include "ert_app.hpp"
#include "portapack.hpp"
using namespace portapack;

View File

@ -19,8 +19,8 @@
* Boston, MA 02110-1301, USA.
*/
#ifndef __APP_ERT_H__
#define __APP_ERT_H__
#ifndef __ERT_APP_H__
#define __ERT_APP_H__
#include "ui_console.hpp"
#include "message.hpp"
@ -112,4 +112,4 @@ private:
} /* namespace ui */
#endif/*__APP_ERT_H__*/
#endif/*__ERT_APP_H__*/

View File

@ -19,7 +19,7 @@
* Boston, MA 02110-1301, USA.
*/
#include "app_spectrum_analysis.hpp"
#include "spectrum_analysis_app.hpp"
#include "portapack.hpp"
using namespace portapack;

View File

@ -19,8 +19,8 @@
* Boston, MA 02110-1301, USA.
*/
#ifndef __APP_SPECTRUM_ANALYSIS_H__
#define __APP_SPECTRUM_ANALYSIS_H__
#ifndef __SPECTRUM_ANALYSIS_APP_H__
#define __SPECTRUM_ANALYSIS_APP_H__
#include "receiver_model.hpp"
#include "ui_spectrum.hpp"
@ -41,4 +41,4 @@ private:
} /* namespace ui */
#endif/*__APP_SPECTRUM_ANALYSIS_H__*/
#endif/*__SPECTRUM_ANALYSIS_APP_H__*/

View File

@ -19,7 +19,7 @@
* Boston, MA 02110-1301, USA.
*/
#include "app_tpms.hpp"
#include "tpms_app.hpp"
#include "portapack.hpp"
using namespace portapack;

View File

@ -19,8 +19,8 @@
* Boston, MA 02110-1301, USA.
*/
#ifndef __APP_TPMS_H__
#define __APP_TPMS_H__
#ifndef __TPMS_APP_H__
#define __TPMS_APP_H__
#include "ui_console.hpp"
#include "message.hpp"
@ -53,4 +53,4 @@ private:
} /* namespace ui */
#endif/*__APP_TPMS_H__*/
#endif/*__TPMS_APP_H__*/

View File

@ -26,11 +26,11 @@ using namespace portapack;
#include "string_format.hpp"
#include "app_analog_audio.hpp"
#include "app_ais.hpp"
#include "app_tpms.hpp"
#include "app_ert.hpp"
#include "app_spectrum_analysis.hpp"
#include "analog_audio_app.hpp"
#include "ais_app.hpp"
#include "tpms_app.hpp"
#include "ert_app.hpp"
#include "spectrum_analysis_app.hpp"
namespace ui {