#ifndef _ACOUSTICMESSAGE_H
#define _ACOUSTICMESSAGE_H

#define AcousticTokenDelimiter ','
#define AcousticPadChar ' '

class AcousticMessage {

public:
  enum Type {
    Navigation,
    MissionState,
    Ctd,
    ChangeState,
    Unknown
  };

  static const char *typeMnemonic(Type type);

};

#endif
