Click here to Skip to main content
15,886,362 members
Articles / Programming Languages / Java

NMEA 0183 sentence parser/builder

Rate me:
Please Sign up or sign in to vote.
4.78/5 (25 votes)
10 Dec 2013CPOL6 min read 247.7K   15K   97  
Library for working with NMEA0183 devices

namespace GNSSView
{
    /// code by Aleksandr Dikarev, dikarev-aleksandr@yandex.ru

    public abstract class SettingsProvider<T> where T : class, new()
    {
        #region Properties

        public T Data { get; set; }
        public bool isSwallowExceptions { get; set; }

        #endregion

        #region Constructor

        public SettingsProvider()
        {
            isSwallowExceptions = true;
        }

        #endregion

        #region Methods

        public abstract void Save(string fileName);

        public abstract void Load(string fileName);

        #endregion
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) JSC "SHTIL"
Russian Federation Russian Federation
underwater acoustics, communication and positioning.
Embedded software development. Digital signal processing.

Graduate of Volgograd Technical State University (2007),
Postgraduate student in Kovrov Technological State Academy (2012).

Comments and Discussions