Created
May 20, 2015 10:58
-
-
Save MasazI/299e2de53133cfe92040 to your computer and use it in GitHub Desktop.
InputStream.hpp (子 - 標準入力)
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
// | |
// InputStream.hpp | |
// CplusplusPractice | |
// | |
// Created by masai on 2015/05/20. | |
// Copyright (c) 2015年 masai. All rights reserved. | |
// | |
#ifndef CplusplusPractice_InputStream_hpp | |
#define CplusplusPractice_InputStream_hpp | |
#include "Stream.hpp" | |
class InputStream : public Stream{ | |
protected: | |
virtual void SetBase(); | |
}; | |
#endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment