-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Namespace #146
base: master
Are you sure you want to change the base?
Namespace #146
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs some explanation.
int day; | ||
int hour; | ||
int min; | ||
AisMdate() { month = day = hour = min = 0; }; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Initialization should be done as an initializer list.
@@ -373,6 +373,16 @@ enum Dac { | |||
|
|||
class AisBitset; | |||
|
|||
class AisMdate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure this class adds alot. For starters, the class name doesn't mean anything to me. Perhaps a better class name and definitely needs a comment.
@@ -373,6 +373,16 @@ enum Dac { | |||
|
|||
class AisBitset; | |||
|
|||
class AisMdate | |||
{ | |||
public: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Needs to be formatted with the clang-format using the google style.
Namespace libais for test program