Skip to content

Instantly share code, notes, and snippets.

@MasazI
Created May 20, 2015 10:58
Show Gist options
  • Save MasazI/299e2de53133cfe92040 to your computer and use it in GitHub Desktop.
Save MasazI/299e2de53133cfe92040 to your computer and use it in GitHub Desktop.
InputStream.hpp (子 - 標準入力)
//
// 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