Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
#ifndef EDITOR_TEXT_VIEW_CONT_H
#define EDITOR_TEXT_VIEW_CONT_H
#include "ECTextViewImp.h"
#include "FormatterInterface.h"
#include <string>
#include <memory>
#include <vector>
class EditorTextViewCont
{
public:
EditorTextViewCont(ECTextViewImp *view, FormatterInterface *formatter);
~EditorTextViewCont();
// Called by observer
void BuildFrame();
void BuildStatus();
private:
void ClearFrame();
ECTextViewImp *view;
FormatterInterface *formatter;
std::vector<std::shared_ptr<std::string>> frame;
// Cursor location
int x,y;
};
#endif /* EDITOR_TEXT_VIEW_CONT_H */