Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99392271
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, Jan 24, 03:41
Size
334 B
Mime Type
text/x-c
Expires
Sun, Jan 26, 03:41 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
23789088
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