Skytraq S1315F-RAW-EVK Logger

Dependencies:   TextLCD mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers tversion.h Source File

tversion.h

00001 
00002 #ifndef __TVERSION_H
00003 #define __TVERSION_H
00004 
00005 namespace libT {
00006 
00007 class tVersion {
00008 public:
00009     tVersion(unsigned long _major,unsigned long _minor) : major(_major),minor(minor) {}
00010 
00011     unsigned long getMajorVersion(void) const { return major; }
00012     unsigned long getMinorVersion(void) const { return minor; }
00013 
00014 private:
00015     unsigned long major;
00016     unsigned long minor;
00017 };
00018 
00019 };
00020 
00021 #endif /* __TVERSION_H */