Last active
September 22, 2018 18:58
-
-
Save Duckle29/dfc74c173f0ea8f412355814fd0a8e84 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "bar.h" | |
bar::bar(): | |
reader(14) | |
{} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include "cardreader.h" | |
class bar | |
{ | |
public: | |
bar(); | |
protected: | |
CardReader reader; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include "foo.h" | |
foo::foo(): | |
reader(x) | |
{} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#pragma once | |
#include "cardreader.h" | |
class foo | |
{ | |
public: | |
foo(); | |
protected: | |
CardReader reader; | |
const uint8_t x = 14; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment