Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95158647
text_viewer.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Dec 13, 08:08
Size
334 B
Mime Type
text/x-c
Expires
Sun, Dec 15, 08:08 (2 d)
Engine
blob
Format
Raw Data
Handle
22916573
Attached To
rSYMKIT symkit
text_viewer.h
View Options
#ifndef TEXT_VIEWER_H
#define TEXT_VIEWER_H
#include <iostream>
#include "support_a_dessin.h"
class TextViewer : public SupportADessin {
public:
TextViewer(std::ostream& flot)
: flot(flot)
{}
virtual ~TextViewer() {}
virtual void dessine(Contenu const& a_dessiner) override;
private:
std::ostream& flot;
};
#endif
Event Timeline
Log In to Comment