Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122207679
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
Wed, Jul 16, 15:56
Size
334 B
Mime Type
text/x-c
Expires
Fri, Jul 18, 15:56 (2 d)
Engine
blob
Format
Raw Data
Handle
27450181
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